mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
25 lines
673 B
PHP
Executable File
25 lines
673 B
PHP
Executable File
<?php
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
function DisplayThemeConfig(&$extraFooterScripts)
|
|
{
|
|
$themes = [
|
|
"default" => "RaspAP (default)",
|
|
"hackernews" => "HackerNews",
|
|
"lightsout" => "Lights Out"
|
|
];
|
|
$themeFiles = [
|
|
"default" => "custom.php",
|
|
"hackernews" => "hackernews.css",
|
|
"lightsout" => "lightsout.css"
|
|
];
|
|
$selectedTheme = array_search($_COOKIE['theme'], $themeFiles);
|
|
|
|
echo renderTemplate("themes", compact("themes", "selectedTheme"));
|
|
|
|
$extraFooterScripts[] = array('src'=>'dist/huebee/huebee.pkgd.min.js', 'defer'=>false);
|
|
$extraFooterScripts[] = array('src'=>'app/js/huebee.js', 'defer'=>false);
|
|
}
|