mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
MENU_CATEGORY_NEWS => [
|
|
'Latest News' => 'news',
|
|
'News Archive' => 'news/archive',
|
|
'Changelog' => 'changelog',
|
|
],
|
|
MENU_CATEGORY_ACCOUNT => [
|
|
'Account Management' => 'account/manage',
|
|
'Create Account' => 'account/create',
|
|
'Lost Account?' => 'account/lost',
|
|
'Server Rules' => 'rules',
|
|
'Downloads' => 'downloads',
|
|
],
|
|
MENU_CATEGORY_COMMUNITY => [
|
|
'Characters' => 'characters',
|
|
'Who is Online?' => 'online',
|
|
'Highscores' => 'highscores',
|
|
'Last Kills' => 'last-kills',
|
|
'Houses' => 'houses',
|
|
'Guilds' => 'guilds',
|
|
'Polls' => 'polls',
|
|
'Bans' => 'bans',
|
|
'Support List' => 'team',
|
|
],
|
|
MENU_CATEGORY_FORUM => [
|
|
'Forum' => 'forum',
|
|
],
|
|
MENU_CATEGORY_LIBRARY => [
|
|
'Monsters' => 'monsters',
|
|
'Spells' => 'spells',
|
|
'Commands' => 'commands',
|
|
'Exp Stages' => 'exp-stages',
|
|
'Gallery' => 'gallery',
|
|
'Server Info' => 'server-info',
|
|
'Exp Table' => 'exp-table',
|
|
'FAQ' => 'faq',
|
|
],
|
|
MENU_CATEGORY_SHOP => [
|
|
'Buy Points' => 'points',
|
|
'Shop Offer' => 'gifts',
|
|
'Shop History' => 'gifts/history',
|
|
],
|
|
];
|