2017-10-06 23:08:06 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-15 17:57:46 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2019-04-10 08:37:35 +00:00
|
|
|
function DisplayThemeConfig()
|
|
|
|
{
|
2019-08-19 00:24:13 +00:00
|
|
|
$themes = [
|
|
|
|
"default" => "RaspAP (default)",
|
|
|
|
"hackernews" => "HackerNews",
|
|
|
|
"terminal" => "Terminal"
|
|
|
|
];
|
|
|
|
$themeFiles = [
|
|
|
|
"default" => "custom.css",
|
|
|
|
"hackernews" => "hackernews.css",
|
|
|
|
"terminal" => "terminal.css"
|
|
|
|
];
|
|
|
|
$selectedTheme = array_search($_COOKIE['theme'], $themeFiles);
|
2019-04-10 08:37:35 +00:00
|
|
|
|
2019-08-19 00:24:13 +00:00
|
|
|
echo renderTemplate("themes", compact("themes", "selectedTheme"));
|
2017-10-06 23:08:06 +00:00
|
|
|
}
|