mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
kathrine: possibility to add custom menu categories
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
<?php
|
||||
$config['menu_default_links_color'] = '#ffffff';
|
||||
|
||||
$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_LIBRARY => array('id' => 'library', 'name' => 'Library'),
|
||||
MENU_CATEGORY_SHOP => array('id' => 'shops', 'name' => 'Shop')
|
||||
);
|
||||
// max 7 menus for kathrine
|
||||
$config['menu_categories'] = [
|
||||
MENU_CATEGORY_NEWS => ['id' => 'news', 'name' => 'Latest News'],
|
||||
// you can add custom menu by uncommenting this
|
||||
// after doing it, go to admin panel -> Menus and add your entries for this category
|
||||
// tip: you can move it up/down to show it on specific position
|
||||
//7 => array('id' => 'testing', 'name' => 'Test Menu 1'),
|
||||
//8 => array('id' => 'testing2', 'name' => 'Test Menu 2'),
|
||||
MENU_CATEGORY_ACCOUNT => ['id' => 'account', 'name' => 'Account'],
|
||||
MENU_CATEGORY_COMMUNITY => ['id' => 'community', 'name' => 'Community'],
|
||||
MENU_CATEGORY_LIBRARY => ['id' => 'library', 'name' => 'Library'],
|
||||
MENU_CATEGORY_SHOP => ['id' => 'shops', 'name' => 'Shop']
|
||||
];
|
||||
|
||||
$config['menus'] = require __DIR__ . '/menus.php';
|
||||
|
Reference in New Issue
Block a user