mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-22 21:59:21 +02:00

* you can edit them in Admin Panel under 'Menus' option. * you can also add custom links, like http://google.pl * removed videos pages, as it can be easily added using custom Menus and Pages with insert Media * removed bug_report configurable, its now enabled by default
15 lines
555 B
PHP
15 lines
555 B
PHP
<?php
|
|
$config['darkborder'] = "#d0cdb4";
|
|
$config['lightborder'] = "#e5e3d7";
|
|
$config['vdarkborder'] = "#afab89";
|
|
$config['news_title_color'] = "white";
|
|
$config['menu_categories'] = array(
|
|
MENU_CATEGORY_NEWS => array('id' => 'news', 'name' => 'Latest News'),
|
|
MENU_CATEGORY_ACCOUNT => array('id' => 'account', 'name' => 'Account'),
|
|
MENU_CATEGORY_COMMUNITY => array('id' => 'community', 'name' => 'Community'),
|
|
MENU_CATEGORY_LIBRARY => array('id' => 'library', 'name' => 'Library'),
|
|
MENU_CATEGORY_SHOP => array('id' => 'shops', 'name' => 'Shop')
|
|
);
|
|
|
|
?>
|