-
Notifications
You must be signed in to change notification settings - Fork 1
/
Nav.php
41 lines (38 loc) · 969 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
39
40
41
<?php
/**
* This file is part of payjp4
*
* 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\payjp4;
use Eccube\Common\EccubeNav;
class Nav implements EccubeNav
{
/**
* @return array
*/
public static function getNav()
{
return [
'payjp' => [
'name' => 'PAY.JP',
'icon' => 'fa-cube',
'children' => [
'config' => [
'name' => 'plugin.payjp.admin.config.sub_title',
'url' => 'payjp_admin_config'
],
'plan' => [
'name' => '定期購入プラン',
'url' => 'admin_payjp_plan'
]
]
]
];
}
}