admin | 7ffa703 | 2006-09-27 21:06:30 +0000 | [diff] [blame] | 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 | '<p><a href="'+base+'index.html">User Guide Home</a></p>' + |
| 10 | |
| 11 | '<h3>Basic Info</h3>' + |
| 12 | '<ul>' + |
| 13 | '<li><a href="'+base+'general/requirements.html">Server Requirements</a></li>' + |
| 14 | '<li><a href="'+base+'license.html">License Agreement</a></li>' + |
| 15 | '<li><a href="'+base+'general/changelog.html">Change Log</a></li>' + |
| 16 | '<li><a href="'+base+'general/credits.html">Credits</a></li>' + |
| 17 | '</ul>' + |
| 18 | |
| 19 | '<h3>Installation</h3>' + |
| 20 | '<ul>' + |
| 21 | '<li><a href="'+base+'installation/downloads.html">Downloading Code Igniter</a></li>' + |
| 22 | '<li><a href="'+base+'installation/index.html">Installation Instructions</a></li>' + |
| 23 | '<li><a href="'+base+'installation/upgrading.html">Upgrading from a Previous Version</a></li>' + |
admin | 24dd7e7 | 2006-10-01 19:02:29 +0000 | [diff] [blame] | 24 | '<li><a href="'+base+'installation/troubleshooting.html">Troubleshooting</a></li>' + |
admin | 7ffa703 | 2006-09-27 21:06:30 +0000 | [diff] [blame] | 25 | '</ul>' + |
| 26 | |
| 27 | '<h3>Introduction</h3>' + |
| 28 | '<ul>' + |
| 29 | '<li><a href="'+base+'overview/at_a_glance.html">Code Igniter at a Glance</a></li>' + |
| 30 | '<li><a href="'+base+'overview/features.html">Supported Features</a></li>' + |
| 31 | '<li><a href="'+base+'overview/appflow.html">Application Flow Chart</a></li>' + |
| 32 | '<li><a href="'+base+'overview/mvc.html">Model-View-Controller</a></li>' + |
| 33 | '<li><a href="'+base+'overview/goals.html">Architectural Goals</a></li>' + |
| 34 | '</ul>' + |
| 35 | |
| 36 | '</td><td class="td_sep" valign="top">' + |
| 37 | |
| 38 | '<h3>General Topics</h3>' + |
| 39 | '<ul>' + |
| 40 | '<li><a href="'+base+'general/index.html">Getting Started</a></li>' + |
| 41 | '<li><a href="'+base+'general/urls.html">Code Igniter URLs</a></li>' + |
| 42 | '<li><a href="'+base+'general/controllers.html">Controllers</a></li>' + |
| 43 | '<li><a href="'+base+'general/views.html">Views</a></li>' + |
| 44 | '<li><a href="'+base+'general/models.html">Models</a></li>' + |
| 45 | '<li><a href="'+base+'general/helpers.html">Helpers</a></li>' + |
| 46 | '<li><a href="'+base+'general/plugins.html">Plugins</a></li>' + |
| 47 | '<li><a href="'+base+'general/libraries.html">Using Code Igniter Libraries</a></li>' + |
| 48 | '<li><a href="'+base+'general/creating_libraries.html">Creating Your Own Libraries</a></li>' + |
| 49 | '<li><a href="'+base+'general/core_classes.html">Creating Core Classes</a></li>' + |
| 50 | '<li><a href="'+base+'general/hooks.html">Hooks - Extending the Core</a></li>' + |
| 51 | '<li><a href="'+base+'general/autoloader.html">Auto-loading Resources</a></li>' + |
| 52 | '<li><a href="'+base+'general/scaffolding.html">Scaffolding</a></li>' + |
| 53 | '<li><a href="'+base+'general/routing.html">URI Routing</a></li>' + |
| 54 | '<li><a href="'+base+'general/errors.html">Error Handling</a></li>' + |
admin | 08f6020 | 2006-10-03 05:28:00 +0000 | [diff] [blame^] | 55 | '<li><a href="'+base+'general/caching.html">Caching</a></li>' + |
| 56 | '<li><a href="'+base+'general/profiling.html">Profiling Your Application</a></li>' + |
admin | 7ffa703 | 2006-09-27 21:06:30 +0000 | [diff] [blame] | 57 | '<li><a href="'+base+'general/multiple_apps.html">Running Multiple Applications</a></li>' + |
| 58 | '<li><a href="'+base+'general/alternative_php.html">Alternative PHP Syntax</a></li>' + |
| 59 | '<li><a href="'+base+'general/security.html">Security</a></li>' + |
| 60 | '</ul>' + |
| 61 | |
| 62 | '</td><td class="td_sep" valign="top">' + |
| 63 | |
| 64 | |
| 65 | '<h3>Class Reference</h3>' + |
| 66 | '<ul>' + |
| 67 | '<li><a href="'+base+'libraries/benchmark.html">Benchmarking Class</a></li>' + |
| 68 | '<li><a href="'+base+'libraries/calendar.html">Calendaring Class</a></li>' + |
| 69 | '<li><a href="'+base+'libraries/config.html">Config Class</a></li>' + |
| 70 | '<li><a href="'+base+'database/index.html">Database Class</a></li>' + |
| 71 | '<li><a href="'+base+'libraries/email.html">Email Class</a></li>' + |
| 72 | '<li><a href="'+base+'libraries/encryption.html">Encryption Class</a></li>' + |
| 73 | '<li><a href="'+base+'libraries/file_uploading.html">File Uploading Class</a></li>' + |
| 74 | '<li><a href="'+base+'libraries/image_lib.html">Image Manipulation Class</a></li>' + |
| 75 | '<li><a href="'+base+'libraries/input.html">Input and Security Class</a></li>' + |
| 76 | '<li><a href="'+base+'libraries/loader.html">Loader Class</a></li>' + |
| 77 | '<li><a href="'+base+'libraries/language.html">Language Class</a></li>' + |
| 78 | '<li><a href="'+base+'libraries/output.html">Output Class</a></li>' + |
| 79 | '<li><a href="'+base+'libraries/pagination.html">Pagination Class</a></li>' + |
| 80 | '<li><a href="'+base+'libraries/sessions.html">Session Class</a></li>' + |
| 81 | '<li><a href="'+base+'libraries/trackback.html">Trackback Class</a></li>' + |
| 82 | '<li><a href="'+base+'libraries/parser.html">Template Parser Class</a></li>' + |
| 83 | '<li><a href="'+base+'libraries/unit_testing.html">Unit Testing Class</a></li>' + |
| 84 | '<li><a href="'+base+'libraries/uri.html">URI Class</a></li>' + |
| 85 | '<li><a href="'+base+'libraries/validation.html">Validation Class</a></li>' + |
| 86 | '<li><a href="'+base+'libraries/xmlrpc.html">XML-RPC Class</a></li>' + |
admin | 24dd7e7 | 2006-10-01 19:02:29 +0000 | [diff] [blame] | 87 | '<li><a href="'+base+'libraries/zip.html">Zip Encoding Class</a></li>' + |
admin | 7ffa703 | 2006-09-27 21:06:30 +0000 | [diff] [blame] | 88 | '</ul>' + |
| 89 | |
| 90 | '</td><td class="td_sep" valign="top">' + |
| 91 | |
| 92 | '<h3>Helper Reference</h3>' + |
| 93 | '<ul>' + |
| 94 | '<li><a href="'+base+'helpers/array_helper.html">Array Helper</a></li>' + |
| 95 | '<li><a href="'+base+'helpers/cookie_helper.html">Cookie Helper</a></li>' + |
| 96 | '<li><a href="'+base+'helpers/date_helper.html">Date Helper</a></li>' + |
| 97 | '<li><a href="'+base+'helpers/directory_helper.html">Directory Helper</a></li>' + |
admin | 78ce3cc | 2006-10-02 02:58:03 +0000 | [diff] [blame] | 98 | '<li><a href="'+base+'helpers/download_helper.html">Download Helper</a></li>' + |
admin | 7ffa703 | 2006-09-27 21:06:30 +0000 | [diff] [blame] | 99 | '<li><a href="'+base+'helpers/file_helper.html">File Helper</a></li>' + |
| 100 | '<li><a href="'+base+'helpers/form_helper.html">Form Helper</a></li>' + |
| 101 | '<li><a href="'+base+'helpers/html_helper.html">HTML Helper</a></li>' + |
| 102 | '<li><a href="'+base+'helpers/inflector_helper.html">Inflector Helper</a></li>' + |
| 103 | '<li><a href="'+base+'helpers/security_helper.html">Security Helper</a></li>' + |
| 104 | '<li><a href="'+base+'helpers/string_helper.html">String Helper</a></li>' + |
| 105 | '<li><a href="'+base+'helpers/text_helper.html">Text Helper</a></li>' + |
| 106 | '<li><a href="'+base+'helpers/typography_helper.html">Typography Helper</a></li>' + |
| 107 | '<li><a href="'+base+'helpers/url_helper.html">URL Helper</a></li>' + |
| 108 | '<li><a href="'+base+'helpers/xml_helper.html">XML Helper</a></li>' + |
| 109 | '</ul>' + |
| 110 | |
| 111 | |
| 112 | '<h3>Additional Resources</h3>' + |
| 113 | '<ul>' + |
| 114 | '<li><a href="'+base+'general/quick_reference.html">Quick Reference Chart</a></li>' + |
| 115 | '<li><a href="http://www.codeigniter.com/forums/">Community Forums</a></li>' + |
| 116 | '<li><a href="http://www.codeigniter.com/wiki/">Community Wiki</a></li>' + |
| 117 | '</ul>' + |
| 118 | |
| 119 | '</td></tr></table>'); |
| 120 | } |