-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomizeNav.php
56 lines (52 loc) · 1.65 KB
/
CustomizeNav.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Customize;
use Eccube\Common\EccubeNav;
class CustomizeNav implements EccubeNav
{
public static function getNav()
{
return [
'product' => [
'children' => [
'hoge' => [
'name' => '商品管理の子(追加)',
'url' => 'admin_homepage',
],
],
],
'piyo' => [
'name' => '1階層メニュー(追加)',
'icon' => 'fa-cube',
'children' => [
'piyopiyo1' => [
'name' => '2階層メニュー(子なし)',
'url' => 'admin_homepage',
],
'piyopiyo2' => [
'name' => '2階層メニュー(子あり)',
'children' => [
'piyopiyopiyo1' => [
'name' => '3階層メニュー1',
'url' => 'admin_homepage',
],
'piyopiyopiyo2' => [
'name' => '3階層メニュー2',
'url' => 'admin_homepage',
],
],
],
],
],
];
}
}