forked from kurozumi/stripe-eccube-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nav.php
47 lines (42 loc) · 1.1 KB
/
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
42
43
44
45
46
47
<?php
/**
* This file is part of Stripe4
*
* 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\Stripe4;
use Eccube\Common\EccubeNav;
class Nav implements EccubeNav
{
/**
* @inheritDoc
*/
public static function getNav()
{
return [
'order' => [
'children' => [
'stripe_admin_payment_status' => [
'name' => 'stripe.admin.nav.payment_list',
'url' => 'stripe_admin_payment_status'
]
]
],
'stripe' => [
'name' => 'stripe.admin.config.title',
'icon' => 'fa-cc-stripe',
'children' => [
'stripe_admin_config' => [
'name' => 'stripe.admin.nav.config',
'url' => 'stripe4_admin_config'
]
]
]
];
}
}