forked from kotanbo/EC-CUBE-shopping-mall-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShoppingMallNav.php
More file actions
35 lines (32 loc) · 872 Bytes
/
ShoppingMallNav.php
File metadata and controls
35 lines (32 loc) · 872 Bytes
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
<?php
namespace Plugin\ShoppingMall;
use Eccube\Common\EccubeNav;
class ShoppingMallNav implements EccubeNav
{
/**
* {@inheritdoc}
*
* @return array
*/
public static function getNav()
{
return [
'product' => [
'children' => [
'shopping_mall.csv_import' => [
'name' => 'shopping_mall.admin.product.csv.title',
'url' => 'shopping_mall_admin_product_csv_import',
],
],
],
'setting' => [
'children' => [
'shopping_mall.shop' => [
'name' => 'shopping_mall.admin.shop.title',
'url' => 'shopping_mall_admin_shop_index',
],
],
],
];
}
}