forked from mybizna/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenus.php
More file actions
executable file
·24 lines (19 loc) · 1.15 KB
/
menus.php
File metadata and controls
executable file
·24 lines (19 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/** @var \Modules\Base\Classes\Fetch\Menus $this */
$this->add_submenu("account", "setting", "", "", 10);
$this->add_submenu("account", "setting", "More Setting", "/core/admin/setting/manage", 10);
$this->add_module_info("core", [
'title' => 'Core',
'description' => 'Core',
'icon' => 'fas fa-receipt',
'path' => '/core/admin/country',
'class_str'=> 'text-warning border-warning'
]);
$this->add_menu("core", "country", "Country", "/core/admin/country", "fas fa-cogs", 5);
$this->add_menu("core", "currency", "Currency", "/core/admin/currency", "fas fa-cogs", 5);
$this->add_menu("core", "setting", "Setting", "/core/admin/setting", "fas fa-cogs", 5);
$this->add_menu("core", "notification", "Notification", "/core/admin/notification", "fas fa-cogs", 5);
$this->add_menu("core", "state", "State", "/core/admin/state", "fas fa-cogs", 5);
$this->add_menu("core", "timezone", "Timezone", "/core/admin/timezone", "fas fa-cogs", 5);
$this->add_menu("core", "language", "Language", "/core/admin/language", "fas fa-cogs", 5);
$this->add_menu("core", "language_translation", "Language Translation", "/core/admin/language_translation", "fas fa-cogs", 5);