mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-22 05:39:22 +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
22 lines
909 B
PHP
22 lines
909 B
PHP
<?php
|
|
$config['darkborder'] = "#D4C0A1";
|
|
$config['lightborder'] = "#F1E0C6";
|
|
$config['vdarkborder'] = "#505050";
|
|
$config['news_title_color'] = "white";
|
|
$config['logo_monster'] = "Elder Beholder";
|
|
// separated by comma
|
|
// List: newcomer,gallery,premium,poll
|
|
$config['boxes'] = "newcomer,gallery";
|
|
$config['background_image'] = "background-artwork-860.jpg";
|
|
$config['logo_image'] = "tibia-logo-artwork-top.gif";
|
|
$config['gallery_image'] = 1;
|
|
$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_FORUM => array('id' => 'forum', 'name' => 'Forum'),
|
|
MENU_CATEGORY_LIBRARY => array('id' => 'library', 'name' => 'Library'),
|
|
MENU_CATEGORY_SHOP => array('id' => 'shops', 'name' => 'Shop')
|
|
);
|
|
?>
|