mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
Add custom colors feature
This commit is contained in:
parent
7671ec08ee
commit
813a564f05
2 changed files with 24 additions and 0 deletions
|
@ -63,6 +63,7 @@ $menu = new MenuAdmin(__("Design"), "fas fa-pen-fancy");
|
|||
$menu->addItem(new MenuAdmin(__("First Page Style"), "fas fa-columns", "design_first_page"));
|
||||
$menu->addItem(new MenuAdmin(__("Player Skin"), "fas fa-play-circle", "design_player"));
|
||||
$menu->addItem(new MenuAdmin(__("Themes"), "fas fa-palette", "design_themes"));
|
||||
$menu->addItem(new MenuAdmin(__("Colors"), "fas fa-palette", "design_colors"));
|
||||
//$menu->addItem(new MenuAdmin(__("Custom CSS"), "fab fa-css3-alt", "design_css"));
|
||||
$itens[] = $menu;
|
||||
|
||||
|
@ -99,6 +100,9 @@ switch ($_GET['page']) {
|
|||
case "design_themes":
|
||||
$includeBody = $global['systemRootPath'] . 'admin/design_themes.php';
|
||||
break;
|
||||
case "design_colors":
|
||||
$includeBody = $global['systemRootPath'] . 'admin/design_colors.php';
|
||||
break;
|
||||
case "design_player":
|
||||
$includeBody = $global['systemRootPath'] . 'admin/design_player.php';
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue