mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
22 lines
382 B
PHP
Executable File
22 lines
382 B
PHP
Executable File
<?php
|
|
|
|
// ###################################
|
|
// ## GUI settings processing start
|
|
// ###################################
|
|
|
|
if( isset($_COOKIE['UI_theme']))
|
|
{
|
|
$UI_THEME = $_COOKIE['UI_theme'];
|
|
}else
|
|
{
|
|
$UI_THEME = "Light";
|
|
}
|
|
|
|
$pia_skin_selected = 'skin-blue';
|
|
|
|
// ###################################
|
|
// ## GUI settings processing end
|
|
// ###################################
|
|
|
|
?>
|