mirror of
https://github.com/zamentur/libreto.git
synced 2025-11-07 06:45:01 +05:30
11 lines
277 B
PHP
11 lines
277 B
PHP
<?php
|
|
session_start();
|
|
if( array_key_exists('action', $_POST) ) :
|
|
switch ($_POST['action']):
|
|
case 'headerVisibility':
|
|
if( array_key_exists('visibility', $_POST) ) :
|
|
$_SESSION['header'] = $_POST['visibility'];
|
|
endif;
|
|
break;
|
|
endswitch;
|
|
endif;
|