-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigation.php
39 lines (38 loc) · 850 Bytes
/
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
<?php
return array(
'Introduction' => array(
'url' => 'docs/introduction',
),
'Contributing' => array(
'url' => 'docs/contributing',
),
'Changelog' => array(
'url' => 'docs/changelog',
),
'Getting started' => array(
'children' => array(
'Installation' => 'docs/installation',
'Plugin setup' => 'docs/plugin-setup',
'Constants' => 'docs/constants',
),
),
'WordPress' => array(
'children' => array(
'Nonces' => 'docs/nonces',
'Cache' => 'docs/cache',
'Redirects' => 'docs/redirects',
),
),
'Views & Templates' => array(
'children' => array(
'Twig' => 'docs/twig',
),
),
'Utilities' => array(
'children' => array(
'Request Factory' => 'docs/request-factory',
'Singleton' => 'docs/singleton',
'String helpers' => 'docs/str',
),
),
);