-
Notifications
You must be signed in to change notification settings - Fork 35
/
navigation.php
61 lines (59 loc) · 2.34 KB
/
navigation.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
return [
'User guide' => [
'url' => '/:locale/getting-started',
'children' => [
'Getting Started' => '/:locale/getting-started',
'Modules' => '/:locale/modules',
'Reports' => '/:locale/reports',
'Basic Settings' => '/:locale/basic-settings',
'Advanced Settings' => '/:locale/advanced-settings',
'PDF customization' => '/:locale/custom-fields',
'Gateways' => '/:locale/gateways',
'Payment Links' => '/:locale/payment-links',
'Migrating to V5' => '/:locale/migration',
],
],
'Self host' => [
'url' => '/:locale/self-host-installation',
'children' => [
'Installation' => '/:locale/self-host-installation',
'Troubleshooting' => '/:locale/self-host-troubleshooting',
'Debug Mode' => '/:locale/self-host-debug-mode',
'Updating' => '/:locale/self-host-updating',
'.env Variables' => '/:locale/env-variables',
],
],
'Hosted' => [
'url' => '/:locale/hosted-quickstart',
'children' => [
'Quick Start' => '/:locale/hosted-quickstart',
'Activate' => '/:locale/hosted-activate',
'Custom Domain' => '/:locale/hosted-custom-domain',
'Hosted Migration' => '/:locale/hosted-migration',
'Stripe Integration' => '/:locale/hosted-stripe',
'Troubleshooting' => '/:locale/hosted-troubleshooting',
],
],
'Developer guide' => [
'url' => '/:locale/developer-guide',
'children' => [
'Getting Started' => '/:locale/developer-guide',
'Auth' => '/:locale/api/authentication',
'Clients' => '/:locale/api/clients',
'Payment Gateways' => '/:locale/payment-gateways',
'Static Variables' => '/:locale/statics',
],
],
'legal' => [
'url' => '/:locale/legal/license',
'children' => [
'license' => '/:locale/legal/license',
'terms_of_service' => '/:locale/legal/terms_of_service',
'data_privacy' => '/:locale/legal/data_privacy',
'selfhost_data_privacy' => '/:locale/legal/self_hosting_data',
'selfhost_terms' => '/:locale/legal/self_hosting_terms',
'gdpr' => '/:locale/legal/gdpr',
],
]
];