Skip to content

Commit 94b8ec7

Browse files
committed
These are required for the toc
1 parent 20930ba commit 94b8ec7

3 files changed

Lines changed: 166 additions & 0 deletions

File tree

manual/en/toc/features.inc

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?php
2+
$TOC = array (
3+
0 =>
4+
array (
5+
0 => 'features.http-auth.php',
6+
1 => 'HTTP authentication with PHP',
7+
),
8+
1 =>
9+
array (
10+
0 => 'features.cookies.php',
11+
1 => 'Cookies',
12+
),
13+
2 =>
14+
array (
15+
0 => 'features.sessions.php',
16+
1 => 'Sessions',
17+
),
18+
3 =>
19+
array (
20+
0 => 'features.xforms.php',
21+
1 => 'Dealing with XForms',
22+
),
23+
4 =>
24+
array (
25+
0 => 'features.file-upload.php',
26+
1 => 'Handling file uploads',
27+
),
28+
5 =>
29+
array (
30+
0 => 'features.remote-files.php',
31+
1 => 'Using remote files',
32+
),
33+
6 =>
34+
array (
35+
0 => 'features.connection-handling.php',
36+
1 => 'Connection handling',
37+
),
38+
7 =>
39+
array (
40+
0 => 'features.persistent-connections.php',
41+
1 => 'Persistent Database Connections',
42+
),
43+
8 =>
44+
array (
45+
0 => 'features.safe-mode.php',
46+
1 => 'Safe Mode',
47+
),
48+
9 =>
49+
array (
50+
0 => 'features.commandline.php',
51+
1 => 'Command line usage',
52+
),
53+
10 =>
54+
array (
55+
0 => 'features.gc.php',
56+
1 => 'Garbage Collection',
57+
),
58+
11 =>
59+
array (
60+
0 => 'features.dtrace.php',
61+
1 => 'DTrace Dynamic Tracing',
62+
),
63+
);
64+
$TOC_DEPRECATED = array (
65+
);
66+
$PARENTS = array (
67+
0 =>
68+
array (
69+
0 => 'index.php',
70+
1 => 'PHP Manual',
71+
),
72+
);

manual/en/toc/getting-started.inc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
$TOC = array (
3+
0 =>
4+
array (
5+
0 => 'introduction.php',
6+
1 => 'Introduction',
7+
),
8+
1 =>
9+
array (
10+
0 => 'tutorial.php',
11+
1 => 'A simple tutorial',
12+
),
13+
);
14+
$TOC_DEPRECATED = array (
15+
);
16+
$PARENTS = array (
17+
0 =>
18+
array (
19+
0 => 'index.php',
20+
1 => 'PHP Manual',
21+
),
22+
);

manual/en/toc/security.inc

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?php
2+
$TOC = array (
3+
0 =>
4+
array (
5+
0 => 'security.intro.php',
6+
1 => 'Introduction',
7+
),
8+
1 =>
9+
array (
10+
0 => 'security.general.php',
11+
1 => 'General considerations',
12+
),
13+
2 =>
14+
array (
15+
0 => 'security.cgi-bin.php',
16+
1 => 'Installed as CGI binary',
17+
),
18+
3 =>
19+
array (
20+
0 => 'security.apache.php',
21+
1 => 'Installed as an Apache module',
22+
),
23+
4 =>
24+
array (
25+
0 => 'security.filesystem.php',
26+
1 => 'Filesystem Security',
27+
),
28+
5 =>
29+
array (
30+
0 => 'security.database.php',
31+
1 => 'Database Security',
32+
),
33+
6 =>
34+
array (
35+
0 => 'security.errors.php',
36+
1 => 'Error Reporting',
37+
),
38+
7 =>
39+
array (
40+
0 => 'security.globals.php',
41+
1 => 'Using Register Globals',
42+
),
43+
8 =>
44+
array (
45+
0 => 'security.variables.php',
46+
1 => 'User Submitted Data',
47+
),
48+
9 =>
49+
array (
50+
0 => 'security.magicquotes.php',
51+
1 => 'Magic Quotes',
52+
),
53+
10 =>
54+
array (
55+
0 => 'security.hiding.php',
56+
1 => 'Hiding PHP',
57+
),
58+
11 =>
59+
array (
60+
0 => 'security.current.php',
61+
1 => 'Keeping Current',
62+
),
63+
);
64+
$TOC_DEPRECATED = array (
65+
);
66+
$PARENTS = array (
67+
0 =>
68+
array (
69+
0 => 'index.php',
70+
1 => 'PHP Manual',
71+
),
72+
);

0 commit comments

Comments
 (0)