mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 09:46:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1018 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1018 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
	MENU_CATEGORY_NEWS => [
 | 
						|
		'Latest News' => 'news',
 | 
						|
		'News Archive' => 'news/archive',
 | 
						|
		'Changelog' => 'change-log',
 | 
						|
	],
 | 
						|
	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',
 | 
						|
		'Forum' => 'forum',
 | 
						|
		'Team' => 'team',
 | 
						|
	],
 | 
						|
	MENU_CATEGORY_LIBRARY => [
 | 
						|
		'Monsters' => 'monsters',
 | 
						|
		'Spells' => 'spells',
 | 
						|
		'Server Info' => 'ots-info',
 | 
						|
		'Commands' => 'commands',
 | 
						|
		'Exp Stages' => 'exp-stages',
 | 
						|
		'Gallery' => 'gallery',
 | 
						|
		'Exp Table' => 'exp-table',
 | 
						|
		'FAQ' => 'faq',
 | 
						|
	],
 | 
						|
	MENU_CATEGORY_SHOP => [
 | 
						|
		'Buy Points' => 'points',
 | 
						|
		'Shop Offer' => 'gifts',
 | 
						|
		'Shop History' => 'gifts/history',
 | 
						|
	],
 | 
						|
];
 |