-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNav.php
38 lines (34 loc) · 883 Bytes
/
Nav.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
<?php
/*
* This file is part of ResizeImage
*
* Copyright(c) Akira Kurozumi <info@a-zumi.net>
*
* https://a-zumi.net
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\ResizeImage42;
use Eccube\Common\EccubeNav;
class Nav implements EccubeNav
{
/**
* @return array[]
*/
public static function getNav(): array
{
return [
'resize_iamge_config' => [
'name' => '画像リサイズ管理',
'icon' => 'fa-picture-o',
'children' => [
'resize_image_config_amazon_s3' => [
'name' => 'Amazon S3連携設定',
'url' => 'admin_resize_image_amazon_s3',
],
],
],
];
}
}