mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Small changes to system.php
Removed dark theme since it will be enabled by switch at top bar
This commit is contained in:
parent
aec2e3b7bf
commit
3cf88d98b2
1 changed files with 7 additions and 5 deletions
|
@ -191,17 +191,18 @@ function DisplaySystem(&$extraFooterScripts)
|
|||
$themes = [
|
||||
"default" => "RaspAP (default)",
|
||||
"hackernews" => "HackerNews",
|
||||
"material-light" => "Material (light)",
|
||||
"material-dark" => "Material (dark)"
|
||||
"material-light" => "Material (Use dark colors)"
|
||||
];
|
||||
$themeFiles = [
|
||||
"default" => "custom.php",
|
||||
"hackernews" => "hackernews.css",
|
||||
"material-light" => "material-light.php",
|
||||
"material-dark" => "material-dark.php"
|
||||
"material-light" => "material-light.php"
|
||||
];
|
||||
$selectedTheme = array_search($_COOKIE['theme'], $themeFiles);
|
||||
|
||||
// widget options
|
||||
$widgetOpt = $_SESSION["widgetOpt"];
|
||||
|
||||
$extraFooterScripts[] = array('src'=>'dist/huebee/huebee.pkgd.min.js', 'defer'=>false);
|
||||
$extraFooterScripts[] = array('src'=>'app/js/huebee.js', 'defer'=>false);
|
||||
|
||||
|
@ -228,6 +229,7 @@ function DisplaySystem(&$extraFooterScripts)
|
|||
"hostapd_status",
|
||||
"hostapd_led",
|
||||
"themes",
|
||||
"selectedTheme"
|
||||
"selectedTheme",
|
||||
"widgetOpt"
|
||||
));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue