-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNav.php
36 lines (32 loc) · 772 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
<?php
/*
* This file is part of Auth0 for EC-CUBE
*
* 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\Auth0;
use Eccube\Common\EccubeNav;
class Nav implements EccubeNav
{
/**
* @return array[]
*/
public static function getNav(): array
{
return [
'customer' => [
'children' => [
'auth0_config' => [
'name' => 'plugin.social_login.admin.setting.title',
'url' => 'social_login_admin_config',
],
],
],
];
}
}