forked from invoiceninja/invoiceninja.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathself_host_navigation.php
28 lines (25 loc) · 980 Bytes
/
self_host_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
<?php
return [
'self_host' => [
'url' => '/:locale/self-host-installation',
'children' => [
'overview' => '/:locale/getting-started',
'installation' => '/:locale/self-host-installation',
'troubleshooting' => '/:locale/self-host-troubleshooting',
'updating' => '/:locale/self-host-updating',
'env_variables' => '/:locale/env-variables',
'debug_mode' => '/:locale/self-host-debug-mode',
],
],
'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',
],
]
];