Files
RomhackPlaza/config/menu.php
2026-06-23 19:24:38 +02:00

106 lines
2.6 KiB
PHP

<?php
/**
* Categories : <id> => ['name', 'items']
* Items: ['name','icon','route' or 'xf_route']
*/
return [
'website' => [
'name' => 'Website',
'items' => [
[
'name' => 'Home',
'icon' => 'home',
'route' => 'home',
],
[
'name' => 'Database',
'icon' => 'database',
'route' => 'entries.index'
],
[
'name' => 'News',
'icon' => 'newspaper',
'route' => 'news.index'
],
[
'name' => "Submissions queue",
'icon' => 'gavel',
'route' => 'queue.index'
],
[
'name' => "My drafts",
'icon' => 'scissors',
'route' => 'entries.drafts',
'requires_auth' => true
]
]
],
'community' => [
'name' => 'Community',
'items' => [
[
'name' => 'Forum',
'icon' => 'message-circle',
'xf_route' => ''
],
[
'name' => 'Clubs',
'icon' => 'balloon',
'xf_route' => 'clubs'
],
[
'name' => 'Discord',
'icon' => 'messages-square',
'route' => 'home'
],
[
'name' => 'Members',
'icon' => 'users',
'xf_route' => 'members'
],
]
],
'tools' => [
'name' => 'Tools',
'items' => [
[
'name' => 'ROM Patcher',
'icon' => 'stamp',
'route' => 'tools.patcher'
],
[
'name' => 'ROM Hasher',
'icon' => 'hash',
'route' => 'tools.hash'
]
]
],
'pages' => [
'name' => 'Pages',
'items' => [
[
'name' => 'Learn Romhacking',
'icon' => 'graduation-cap',
'route' => 'home'
],
[
'name' => 'About',
'icon' => 'info',
'route' => 'home'
],
[
'name' => 'Contact Us',
'icon' => 'at-sign',
'xf_route' => 'misc/contact'
],
[
'name' => 'Legal pages',
'icon' => 'scale',
'route' => 'home'
]
]
]
];