mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +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:
		| @@ -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" | ||||
|     )); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user