128 lines
3.4 KiB
PHP
128 lines
3.4 KiB
PHP
<?php
|
|
|
|
return array(
|
|
// Main menu
|
|
'main' => array(
|
|
// Dashboard
|
|
array(
|
|
'title' => 'Home',
|
|
'path' => '/',
|
|
'icon' => array(
|
|
'font' => '<i class="fal fa-home"></i>',
|
|
),
|
|
),
|
|
|
|
// Recent Gamer Updates
|
|
array(
|
|
'title' => 'Recent Gamer Updates',
|
|
'path' => '/recent-gamer-updates',
|
|
'icon' => array(
|
|
'font' => '<i class="fal fa-rss"></i>',
|
|
),
|
|
),
|
|
|
|
// Newly Added Games
|
|
array(
|
|
'title' => 'Newly Added Games',
|
|
'path' => '/newly-added-games',
|
|
'icon' => array(
|
|
'font' => '<i class="fal fa-alien-8bit"></i>',
|
|
),
|
|
),
|
|
|
|
// Game Reviews
|
|
array(
|
|
'title' => 'Game Reviews',
|
|
'path' => '/game-reviews',
|
|
'icon' => array(
|
|
'font' => '<i class="fal fa-file-pen"></i>',
|
|
),
|
|
),
|
|
|
|
// Games by Platform
|
|
array(
|
|
'classes' => array('content' => 'pt-8 pb-2'),
|
|
'content' => '<span class="menu-section text-muted text-uppercase fs-8 ls-1">Games by Platform</span>',
|
|
),
|
|
|
|
// Xbox Series X/S
|
|
array(
|
|
'title' => 'Xbox Series X/S',
|
|
'path' => '/platform/Xbox_Series_X_S',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// PlayStation 5
|
|
array(
|
|
'title' => 'PlayStation 5',
|
|
'path' => '/platform/PlayStation_5',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Nintendo Switch
|
|
array(
|
|
'title' => 'Nintendo Switch',
|
|
'path' => '/platform/Nintendo_Switch',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// PC
|
|
array(
|
|
'title' => 'PC',
|
|
'path' => '/platform/PC',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Mobile
|
|
array(
|
|
'title' => 'Mobile',
|
|
'path' => '/platform/Mobile',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Nintendo 3DS
|
|
array(
|
|
'title' => 'Nintendo 3DS',
|
|
'path' => '/platform/Nintendo_3DS',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// More...
|
|
array(
|
|
'title' => 'More...',
|
|
'path' => '/platforms',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Support
|
|
array(
|
|
'classes' => array('content' => 'pt-8 pb-2'),
|
|
'content' => '<span class="menu-section text-muted text-uppercase fs-8 ls-1">Support</span>',
|
|
),
|
|
|
|
// Overview
|
|
array(
|
|
'title' => 'Overview',
|
|
'path' => '/support',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Knowledgebase
|
|
array(
|
|
'title' => 'Knowledgebase',
|
|
'path' => '/support/knowledgebase',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
|
|
// Contact Us
|
|
array(
|
|
'title' => 'Contact Us',
|
|
'path' => '/contact-us',
|
|
'bullet' => '<span class="bullet bullet-dot"></span>',
|
|
),
|
|
),
|
|
|
|
// Horizontal menu
|
|
'horizontal' => array(
|
|
),
|
|
);
|