| 1 |
lars |
1 |
function create_menu(basepath)
|
|
|
2 |
{
|
|
|
3 |
var base = (basepath == 'null') ? '' : basepath;
|
|
|
4 |
|
|
|
5 |
document.write(
|
|
|
6 |
'<table cellpadding="0" cellspaceing="0" border="0" style="width:98%"><tr>' +
|
|
|
7 |
'<td class="td" valign="top">' +
|
|
|
8 |
|
|
|
9 |
'<ul>' +
|
|
|
10 |
'<li><a href="'+base+'index.html">User Guide Home</a></li>' +
|
|
|
11 |
'<li><a href="'+base+'toc.html">Table of Contents Page</a></li>' +
|
|
|
12 |
'</ul>' +
|
|
|
13 |
|
|
|
14 |
'<h3>Basic Info</h3>' +
|
|
|
15 |
'<ul>' +
|
|
|
16 |
'<li><a href="'+base+'general/requirements.html">Server Requirements</a></li>' +
|
|
|
17 |
'<li><a href="'+base+'license.html">License Agreement</a></li>' +
|
|
|
18 |
'<li><a href="'+base+'changelog.html">Change Log</a></li>' +
|
|
|
19 |
'<li><a href="'+base+'general/credits.html">Credits</a></li>' +
|
|
|
20 |
'</ul>' +
|
|
|
21 |
|
|
|
22 |
'<h3>Installation</h3>' +
|
|
|
23 |
'<ul>' +
|
|
|
24 |
'<li><a href="'+base+'installation/downloads.html">Downloading CodeIgniter</a></li>' +
|
|
|
25 |
'<li><a href="'+base+'installation/index.html">Installation Instructions</a></li>' +
|
|
|
26 |
'<li><a href="'+base+'installation/upgrading.html">Upgrading from a Previous Version</a></li>' +
|
|
|
27 |
'<li><a href="'+base+'installation/troubleshooting.html">Troubleshooting</a></li>' +
|
|
|
28 |
'</ul>' +
|
|
|
29 |
|
|
|
30 |
'<h3>Introduction</h3>' +
|
|
|
31 |
'<ul>' +
|
|
|
32 |
'<li><a href="'+base+'overview/getting_started.html">Getting Started</a></li>' +
|
|
|
33 |
'<li><a href="'+base+'overview/at_a_glance.html">CodeIgniter at a Glance</a></li>' +
|
|
|
34 |
'<li><a href="'+base+'overview/features.html">Supported Features</a></li>' +
|
|
|
35 |
'<li><a href="'+base+'overview/appflow.html">Application Flow Chart</a></li>' +
|
|
|
36 |
'<li><a href="'+base+'overview/mvc.html">Model-View-Controller</a></li>' +
|
|
|
37 |
'<li><a href="'+base+'overview/goals.html">Architectural Goals</a></li>' +
|
|
|
38 |
'</ul>' +
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
'</td><td class="td_sep" valign="top">' +
|
|
|
42 |
|
|
|
43 |
'<h3>General Topics</h3>' +
|
|
|
44 |
'<ul>' +
|
|
|
45 |
'<li><a href="'+base+'general/urls.html">CodeIgniter URLs</a></li>' +
|
|
|
46 |
'<li><a href="'+base+'general/controllers.html">Controllers</a></li>' +
|
|
|
47 |
'<li><a href="'+base+'general/reserved_names.html">Reserved Names</a></li>' +
|
|
|
48 |
'<li><a href="'+base+'general/views.html">Views</a></li>' +
|
|
|
49 |
'<li><a href="'+base+'general/models.html">Models</a></li>' +
|
|
|
50 |
'<li><a href="'+base+'general/helpers.html">Helpers</a></li>' +
|
|
|
51 |
'<li><a href="'+base+'general/plugins.html">Plugins</a></li>' +
|
|
|
52 |
'<li><a href="'+base+'general/libraries.html">Using CodeIgniter Libraries</a></li>' +
|
|
|
53 |
'<li><a href="'+base+'general/creating_libraries.html">Creating Your Own Libraries</a></li>' +
|
|
|
54 |
'<li><a href="'+base+'general/core_classes.html">Creating Core Classes</a></li>' +
|
|
|
55 |
'<li><a href="'+base+'general/hooks.html">Hooks - Extending the Core</a></li>' +
|
|
|
56 |
'<li><a href="'+base+'general/autoloader.html">Auto-loading Resources</a></li>' +
|
|
|
57 |
'<li><a href="'+base+'general/common_functions.html">Common Functions</a></li>' +
|
|
|
58 |
'<li><a href="'+base+'general/scaffolding.html">Scaffolding</a></li>' +
|
|
|
59 |
'<li><a href="'+base+'general/routing.html">URI Routing</a></li>' +
|
|
|
60 |
'<li><a href="'+base+'general/errors.html">Error Handling</a></li>' +
|
|
|
61 |
'<li><a href="'+base+'general/caching.html">Caching</a></li>' +
|
|
|
62 |
'<li><a href="'+base+'general/profiling.html">Profiling Your Application</a></li>' +
|
|
|
63 |
'<li><a href="'+base+'general/managing_apps.html">Managing Applications</a></li>' +
|
|
|
64 |
'<li><a href="'+base+'general/alternative_php.html">Alternative PHP Syntax</a></li>' +
|
|
|
65 |
'<li><a href="'+base+'general/security.html">Security</a></li>' +
|
|
|
66 |
'<li><a href="'+base+'general/styleguide.html">PHP Style Guide</a></li>' +
|
|
|
67 |
'<li><a href="'+base+'doc_style/index.html">Writing Documentation</a></li>' +
|
|
|
68 |
'</ul>' +
|
|
|
69 |
|
|
|
70 |
'</td><td class="td_sep" valign="top">' +
|
|
|
71 |
|
|
|
72 |
|
|
|
73 |
'<h3>Class Reference</h3>' +
|
|
|
74 |
'<ul>' +
|
|
|
75 |
'<li><a href="'+base+'libraries/benchmark.html">Benchmarking Class</a></li>' +
|
|
|
76 |
'<li><a href="'+base+'libraries/calendar.html">Calendaring Class</a></li>' +
|
|
|
77 |
'<li><a href="'+base+'libraries/config.html">Config Class</a></li>' +
|
|
|
78 |
'<li><a href="'+base+'database/index.html">Database Class</a></li>' +
|
|
|
79 |
'<li><a href="'+base+'libraries/email.html">Email Class</a></li>' +
|
|
|
80 |
'<li><a href="'+base+'libraries/encryption.html">Encryption Class</a></li>' +
|
|
|
81 |
'<li><a href="'+base+'libraries/file_uploading.html">File Uploading Class</a></li>' +
|
|
|
82 |
'<li><a href="'+base+'libraries/form_validation.html">Form Validation Class</a></li>' +
|
|
|
83 |
'<li><a href="'+base+'libraries/ftp.html">FTP Class</a></li>' +
|
|
|
84 |
'<li><a href="'+base+'libraries/table.html">HTML Table Class</a></li>' +
|
|
|
85 |
'<li><a href="'+base+'libraries/image_lib.html">Image Manipulation Class</a></li>' +
|
|
|
86 |
'<li><a href="'+base+'libraries/input.html">Input and Security Class</a></li>' +
|
|
|
87 |
'<li><a href="'+base+'libraries/loader.html">Loader Class</a></li>' +
|
|
|
88 |
'<li><a href="'+base+'libraries/language.html">Language Class</a></li>' +
|
|
|
89 |
'<li><a href="'+base+'libraries/output.html">Output Class</a></li>' +
|
|
|
90 |
'<li><a href="'+base+'libraries/pagination.html">Pagination Class</a></li>' +
|
|
|
91 |
'<li><a href="'+base+'libraries/sessions.html">Session Class</a></li>' +
|
|
|
92 |
'<li><a href="'+base+'libraries/trackback.html">Trackback Class</a></li>' +
|
|
|
93 |
'<li><a href="'+base+'libraries/parser.html">Template Parser Class</a></li>' +
|
|
|
94 |
'<li><a href="'+base+'libraries/typography.html">Typography Class</a></li>' +
|
|
|
95 |
'<li><a href="'+base+'libraries/unit_testing.html">Unit Testing Class</a></li>' +
|
|
|
96 |
'<li><a href="'+base+'libraries/uri.html">URI Class</a></li>' +
|
|
|
97 |
'<li><a href="'+base+'libraries/user_agent.html">User Agent Class</a></li>' +
|
|
|
98 |
'<li><a href="'+base+'libraries/xmlrpc.html">XML-RPC Class</a></li>' +
|
|
|
99 |
'<li><a href="'+base+'libraries/zip.html">Zip Encoding Class</a></li>' +
|
|
|
100 |
'</ul>' +
|
|
|
101 |
|
|
|
102 |
'</td><td class="td_sep" valign="top">' +
|
|
|
103 |
|
|
|
104 |
'<h3>Helper Reference</h3>' +
|
|
|
105 |
'<ul>' +
|
|
|
106 |
'<li><a href="'+base+'helpers/array_helper.html">Array Helper</a></li>' +
|
|
|
107 |
'<li><a href="'+base+'helpers/compatibility_helper.html">Compatibility Helper</a></li>' +
|
|
|
108 |
'<li><a href="'+base+'helpers/cookie_helper.html">Cookie Helper</a></li>' +
|
|
|
109 |
'<li><a href="'+base+'helpers/date_helper.html">Date Helper</a></li>' +
|
|
|
110 |
'<li><a href="'+base+'helpers/directory_helper.html">Directory Helper</a></li>' +
|
|
|
111 |
'<li><a href="'+base+'helpers/download_helper.html">Download Helper</a></li>' +
|
|
|
112 |
'<li><a href="'+base+'helpers/email_helper.html">Email Helper</a></li>' +
|
|
|
113 |
'<li><a href="'+base+'helpers/file_helper.html">File Helper</a></li>' +
|
|
|
114 |
'<li><a href="'+base+'helpers/form_helper.html">Form Helper</a></li>' +
|
|
|
115 |
'<li><a href="'+base+'helpers/html_helper.html">HTML Helper</a></li>' +
|
|
|
116 |
'<li><a href="'+base+'helpers/inflector_helper.html">Inflector Helper</a></li>' +
|
|
|
117 |
'<li><a href="'+base+'helpers/language_helper.html">Language Helper</a></li>' +
|
|
|
118 |
'<li><a href="'+base+'helpers/number_helper.html">Number Helper</a></li>' +
|
|
|
119 |
'<li><a href="'+base+'helpers/path_helper.html">Path Helper</a></li>' +
|
|
|
120 |
'<li><a href="'+base+'helpers/security_helper.html">Security Helper</a></li>' +
|
|
|
121 |
'<li><a href="'+base+'helpers/smiley_helper.html">Smiley Helper</a></li>' +
|
|
|
122 |
'<li><a href="'+base+'helpers/string_helper.html">String Helper</a></li>' +
|
|
|
123 |
'<li><a href="'+base+'helpers/text_helper.html">Text Helper</a></li>' +
|
|
|
124 |
'<li><a href="'+base+'helpers/typography_helper.html">Typography Helper</a></li>' +
|
|
|
125 |
'<li><a href="'+base+'helpers/url_helper.html">URL Helper</a></li>' +
|
|
|
126 |
'<li><a href="'+base+'helpers/xml_helper.html">XML Helper</a></li>' +
|
|
|
127 |
'</ul>' +
|
|
|
128 |
|
|
|
129 |
|
|
|
130 |
'<h3>Additional Resources</h3>' +
|
|
|
131 |
'<ul>' +
|
|
|
132 |
'<li><a href="http://codeigniter.com/forums/">Community Forums</a></li>' +
|
|
|
133 |
'<li><a href="http://codeigniter.com/wiki/">Community Wiki</a></li>' +
|
|
|
134 |
'</ul>' +
|
|
|
135 |
|
|
|
136 |
'</td></tr></table>');
|
|
|
137 |
}
|