codeigniter_vender 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -0
- data/MIT-LICENSE +20 -0
- data/README +40 -0
- data/Rakefile +18 -0
- data/VERSION +1 -0
- data/codeigniter_vender.gemspec +389 -0
- data/generators/ci_app/USAGE +8 -0
- data/generators/ci_app/ci_app_generator.rb +12 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/index.php +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/license.txt +52 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/autoload.php +116 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/config.php +329 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/constants.php +41 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/database.php +55 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/doctypes.php +15 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/hooks.php +16 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/mimes.php +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/routes.php +48 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/smileys.php +66 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/user_agents.php +175 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/controllers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/controllers/welcome.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_404.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_db.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_general.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_php.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/helpers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/hooks/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/language/english/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/libraries/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/models/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/views/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/views/welcome_message.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/cache/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Base4.php +69 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Base5.php +56 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/CodeIgniter.php +280 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Common.php +421 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Compat.php +93 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB.php +146 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_active_rec.php +1820 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_cache.php +195 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_driver.php +1366 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_forge.php +375 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_result.php +342 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_utility.php +389 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_driver.php +667 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_utility.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_driver.php +670 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_forge.php +254 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_utility.php +245 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_driver.php +671 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_forge.php +254 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_utility.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_driver.php +780 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_result.php +249 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_utility.php +122 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_driver.php +639 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_forge.php +266 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_result.php +228 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_utility.php +148 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_driver.php +684 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_utility.php +124 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_driver.php +657 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_forge.php +265 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_result.php +179 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_utility.php +141 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/fonts/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/fonts/texb.ttf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/array_helper.php +78 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/compatibility_helper.php +498 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/cookie_helper.php +144 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/date_helper.php +611 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/directory_helper.php +84 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/download_helper.php +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/email_helper.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/file_helper.php +464 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/form_helper.php +1025 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/html_helper.php +416 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/inflector_helper.php +171 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/language_helper.php +58 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/number_helper.php +75 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/path_helper.php +72 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/security_helper.php +126 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/smiley_helper.php +273 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/string_helper.php +273 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/text_helper.php +462 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/typography_helper.php +71 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/url_helper.php +593 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/xml_helper.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/calendar_lang.php +51 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/date_lang.php +60 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/db_lang.php +28 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/email_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/form_validation_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/ftp_lang.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/imglib_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/number_lang.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/profiler_lang.php +19 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/scaffolding_lang.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/unit_test_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/upload_lang.php +22 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/validation_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Benchmark.php +113 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Calendar.php +477 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Cart.php +550 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Config.php +244 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Controller.php +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Email.php +2041 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Encrypt.php +484 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Exceptions.php +174 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Form_validation.php +1278 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Ftp.php +618 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Hooks.php +226 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Image_lib.php +1544 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Input.php +1067 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Language.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Loader.php +1085 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Log.php +117 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Model.php +83 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Output.php +409 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Pagination.php +244 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Parser.php +173 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Profiler.php +392 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Router.php +389 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Session.php +758 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Sha1.php +251 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Table.php +440 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Trackback.php +547 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Typography.php +406 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/URI.php +586 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Unit_test.php +347 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Upload.php +970 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/User_agent.php +502 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Validation.php +875 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Xmlrpc.php +1421 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Xmlrpcs.php +536 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Zip.php +359 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/logs/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/captcha_pi.php +356 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/js_calendar_pi.php +629 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/Scaffolding.php +291 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/background.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/logo.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/add.php +32 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/delete.php +9 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/edit.php +33 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/footer.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/header.php +29 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/no_data.php +8 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/stylesheet.css +143 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/view.php +27 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/changelog.html +1080 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/active_record.html +757 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/caching.html +220 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/call_function.html +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/configuration.html +157 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/connecting.html +186 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/examples.html +217 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/fields.html +163 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/forge.html +234 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/helpers.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/index.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/queries.html +153 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/results.html +238 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/table_data.html +113 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/transactions.html +200 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/utilities.html +295 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/doc_style/index.html +86 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/doc_style/template.html +128 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/alternative_php.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/ancillary_classes.html +117 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/autoloader.html +101 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/caching.html +115 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/common_functions.html +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/controllers.html +385 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/core_classes.html +185 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/creating_libraries.html +298 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/credits.html +86 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/errors.html +138 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/helpers.html +185 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/hooks.html +167 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/libraries.html +94 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/managing_apps.html +133 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/models.html +251 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/plugins.html +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/profiling.html +104 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/quick_reference.html +77 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/requirements.html +82 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/reserved_names.html +156 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/routing.html +176 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/scaffolding.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/security.html +153 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/styleguide.html +687 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/urls.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/views.html +274 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/array_helper.html +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/compatibility_helper.html +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/cookie_helper.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/date_helper.html +408 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/directory_helper.html +143 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/download_helper.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/email_helper.html +102 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/file_helper.html +178 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/form_helper.html +484 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/html_helper.html +385 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/inflector_helper.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/language_helper.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/number_helper.html +107 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/path_helper.html +106 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/security_helper.html +125 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/smiley_helper.html +215 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/string_helper.html +176 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/text_helper.html +192 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/typography_helper.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/url_helper.html +289 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/xml_helper.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/appflowchart.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/arrow.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_logo.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_logo_flame.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_quick_ref.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_helper_reference.pdf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_helper_reference.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_library_reference.pdf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_library_reference.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/file.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/folder.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_bg_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_separator_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_toggle_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/smile.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/transparent.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/index.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/downloads.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/index.html +97 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/troubleshooting.html +90 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_120.html +92 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_130.html +203 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_131.html +102 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_132.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_133.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_140.html +145 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_141.html +148 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_150.html +178 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_152.html +111 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_153.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_154.html +116 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_160.html +125 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_161.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_162.html +106 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_163.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_170.html +121 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_171.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_172.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_b11.html +144 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrading.html +101 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/benchmark.html +198 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/calendar.html +249 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/cart.html +346 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/config.html +181 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/email.html +307 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/encryption.html +182 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/file_uploading.html +451 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/form_validation.html +1221 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/ftp.html +303 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/image_lib.html +666 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/input.html +231 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/language.html +137 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/loader.html +214 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/output.html +145 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/pagination.html +218 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/parser.html +208 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/sessions.html +311 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/table.html +292 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/trackback.html +246 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/typography.html +160 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/unit_testing.html +205 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/uri.html +252 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/user_agent.html +201 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/validation.html +740 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/xmlrpc.html +517 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/zip.html +278 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/license.html +107 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/hacks.txt +9 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/moo.fx.js +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/moo.fx.pack.js +241 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/nav.js +139 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/prototype.lite.js +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/user_guide_menu.js +4 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/appflow.html +95 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/at_a_glance.html +172 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/cheatsheets.html +83 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/features.html +120 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/getting_started.html +92 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/goals.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/index.html +84 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/mvc.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/toc.html +209 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/userguide.css +406 -0
- data/generators/ci_app/templates/README +1 -0
- data/generators/ci_controller/USAGE +2 -0
- data/generators/ci_controller/ci_controller_generator.rb +11 -0
- data/generators/ci_controller/templates/ci_controller.php.erb +15 -0
- data/generators/ci_controller/templates/ci_view.php.erb +8 -0
- data/generators/ci_layout/USAGE +2 -0
- data/generators/ci_layout/ci_layout_generator.rb +24 -0
- data/generators/ci_layout/templates/application_layout.php.erb +19 -0
- data/generators/ci_model/USAGE +2 -0
- data/generators/ci_model/ci_model_generator.rb +42 -0
- data/generators/ci_model/templates/ci_model.php.erb +15 -0
- data/generators/ci_model/templates/model.rb +5 -0
- data/generators/ci_model/templates/model_migration.rb.erb +16 -0
- data/init.rb +1 -0
- data/install.rb +1 -0
- data/lib/codeigniter_vender.rb +1 -0
- data/lib/tasks/app.rake +8 -0
- data/test/codeigniter_vender_test.rb +8 -0
- data/test/test_helper.rb +3 -0
- data/uninstall.rb +1 -0
- metadata +411 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Managing your Applications : CodeIgniter User Guide</title>
|
|
7
|
+
|
|
8
|
+
<style type='text/css' media='all'>@import url('../userguide.css');</style>
|
|
9
|
+
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript" src="../nav/nav.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../nav/moo.fx.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
|
|
15
|
+
|
|
16
|
+
<meta http-equiv='expires' content='-1' />
|
|
17
|
+
<meta http-equiv= 'pragma' content='no-cache' />
|
|
18
|
+
<meta name='robots' content='all' />
|
|
19
|
+
<meta name='author' content='ExpressionEngine Dev Team' />
|
|
20
|
+
<meta name='description' content='CodeIgniter User Guide' />
|
|
21
|
+
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
|
|
25
|
+
<!-- START NAVIGATION -->
|
|
26
|
+
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
|
|
27
|
+
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
|
|
28
|
+
<div id="masthead">
|
|
29
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
30
|
+
<tr>
|
|
31
|
+
<td><h1>CodeIgniter User Guide Version 1.7.2</h1></td>
|
|
32
|
+
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
|
|
33
|
+
</tr>
|
|
34
|
+
</table>
|
|
35
|
+
</div>
|
|
36
|
+
<!-- END NAVIGATION -->
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<!-- START BREADCRUMB -->
|
|
40
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
41
|
+
<tr>
|
|
42
|
+
<td id="breadcrumb">
|
|
43
|
+
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
|
|
44
|
+
<a href="../index.html">User Guide Home</a> ›
|
|
45
|
+
Managing your Applications
|
|
46
|
+
</td>
|
|
47
|
+
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
|
|
48
|
+
</tr>
|
|
49
|
+
</table>
|
|
50
|
+
<!-- END BREADCRUMB -->
|
|
51
|
+
|
|
52
|
+
<br clear="all" />
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<!-- START CONTENT -->
|
|
56
|
+
<div id="content">
|
|
57
|
+
|
|
58
|
+
<h1>Managing your Applications</h1>
|
|
59
|
+
|
|
60
|
+
<p>By default it is assumed that you only intend to use CodeIgniter to manage one application, which you will build in your
|
|
61
|
+
<dfn>system/application/</dfn> directory. It is possible, however, to have multiple sets of applications that share a single
|
|
62
|
+
CodeIgniter installation, or even to rename or relocate your <dfn>application</dfn> folder.</p>
|
|
63
|
+
|
|
64
|
+
<h2>Renaming the Application Folder</h2>
|
|
65
|
+
|
|
66
|
+
<p>If you would like to rename your <dfn>application</dfn> folder you may do so as long as you open your main <kbd>index.php</kbd>
|
|
67
|
+
file and set its name using the <samp>$application_folder</samp> variable:</p>
|
|
68
|
+
|
|
69
|
+
<code>$application_folder = "application";</code>
|
|
70
|
+
|
|
71
|
+
<h2>Relocating your Application Folder</h2>
|
|
72
|
+
|
|
73
|
+
<p>It is possible to move your <dfn>application</dfn> folder to a different location on your server than your <kbd>system</kbd> folder.
|
|
74
|
+
To do so open your main <kbd>index.php</kbd> and set a <em>full server path</em> in the <samp>$application_folder</samp> variable.</p>
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<code>$application_folder = "/Path/to/your/application";</code>
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<h2>Running Multiple Applications with one CodeIgniter Installation</h2>
|
|
81
|
+
|
|
82
|
+
<p>If you would like to share a common CodeIgniter installation to manage several different applications simply
|
|
83
|
+
put all of the directories located inside your <kbd>application</kbd> folder into their
|
|
84
|
+
own sub-folder.</p>
|
|
85
|
+
|
|
86
|
+
<p>For example, let's say you want to create two applications, "foo" and "bar". You will structure your
|
|
87
|
+
application folder like this:</p>
|
|
88
|
+
|
|
89
|
+
<code>system/application/<var>foo</var>/<br />
|
|
90
|
+
system/application/<var>foo</var>/config/<br />
|
|
91
|
+
system/application/<var>foo</var>/controllers/<br />
|
|
92
|
+
system/application/<var>foo</var>/errors/<br />
|
|
93
|
+
system/application/<var>foo</var>/libraries/<br />
|
|
94
|
+
system/application/<var>foo</var>/models/<br />
|
|
95
|
+
system/application/<var>foo</var>/views/<br />
|
|
96
|
+
system/application/<samp>bar</samp>/<br />
|
|
97
|
+
system/application/<samp>bar</samp>/config/<br />
|
|
98
|
+
system/application/<samp>bar</samp>/controllers/<br />
|
|
99
|
+
system/application/<samp>bar</samp>/errors/<br />
|
|
100
|
+
system/application/<samp>bar</samp>/libraries/<br />
|
|
101
|
+
system/application/<samp>bar</samp>/models/<br />
|
|
102
|
+
system/application/<samp>bar</samp>/views/</code>
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
<p>To select a particular application for use requires that you open your main <kbd>index.php</kbd> file and set the <dfn>$application_folder</dfn>
|
|
106
|
+
variable. For example, to select the "foo" application for use you would do this:</p>
|
|
107
|
+
|
|
108
|
+
<code>$application_folder = "application/foo";</code>
|
|
109
|
+
|
|
110
|
+
<p class="important"><strong>Note:</strong> Each of your applications will need its own <dfn>index.php</dfn> file which
|
|
111
|
+
calls the desired application. The index.php file can be named anything you want.</p>
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
</div>
|
|
118
|
+
<!-- END CONTENT -->
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<div id="footer">
|
|
122
|
+
<p>
|
|
123
|
+
Previous Topic: <a href="profiling.html">Profiling Your Application</a>
|
|
124
|
+
·
|
|
125
|
+
<a href="#top">Top of Page</a> ·
|
|
126
|
+
<a href="../index.html">User Guide Home</a> ·
|
|
127
|
+
Next Topic: <a href="alternative_php.html">Alternative PHP Syntax</a>
|
|
128
|
+
</p>
|
|
129
|
+
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
|
|
130
|
+
</div>
|
|
131
|
+
|
|
132
|
+
</body>
|
|
133
|
+
</html>
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Models : CodeIgniter User Guide</title>
|
|
7
|
+
|
|
8
|
+
<style type='text/css' media='all'>@import url('../userguide.css');</style>
|
|
9
|
+
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript" src="../nav/nav.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../nav/moo.fx.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
|
|
15
|
+
|
|
16
|
+
<meta http-equiv='expires' content='-1' />
|
|
17
|
+
<meta http-equiv= 'pragma' content='no-cache' />
|
|
18
|
+
<meta name='robots' content='all' />
|
|
19
|
+
<meta name='author' content='ExpressionEngine Dev Team' />
|
|
20
|
+
<meta name='description' content='CodeIgniter User Guide' />
|
|
21
|
+
</head>
|
|
22
|
+
<body>
|
|
23
|
+
|
|
24
|
+
<!-- START NAVIGATION -->
|
|
25
|
+
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
|
|
26
|
+
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
|
|
27
|
+
<div id="masthead">
|
|
28
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
29
|
+
<tr>
|
|
30
|
+
<td><h1>CodeIgniter User Guide Version 1.7.2</h1></td>
|
|
31
|
+
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
|
|
32
|
+
</tr>
|
|
33
|
+
</table>
|
|
34
|
+
</div>
|
|
35
|
+
<!-- END NAVIGATION -->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!-- START BREADCRUMB -->
|
|
39
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
40
|
+
<tr>
|
|
41
|
+
<td id="breadcrumb">
|
|
42
|
+
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
|
|
43
|
+
<a href="../index.html">User Guide Home</a> ›
|
|
44
|
+
Models
|
|
45
|
+
</td>
|
|
46
|
+
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
|
|
47
|
+
</tr>
|
|
48
|
+
</table>
|
|
49
|
+
<!-- END BREADCRUMB -->
|
|
50
|
+
|
|
51
|
+
<br clear="all" />
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
<!-- START CONTENT -->
|
|
55
|
+
<div id="content">
|
|
56
|
+
|
|
57
|
+
<h1>Models</h1>
|
|
58
|
+
|
|
59
|
+
<p>Models are <strong>optionally</strong> available for those who want to use a more traditional MVC approach.</p>
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<ul>
|
|
64
|
+
<li><a href="#what">What is a Model?</a></li>
|
|
65
|
+
<li><a href="#anatomy">Anatomy of a Model</a></li>
|
|
66
|
+
<li><a href="#loading">Loading a Model</a></li>
|
|
67
|
+
<li><a href="#auto_load_model">Auto-Loading a Model</a> </li>
|
|
68
|
+
<li><a href="#conn">Connecting to your Database</a></li>
|
|
69
|
+
</ul>
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<h2><a name="what"></a>What is a Model?</h2>
|
|
74
|
+
|
|
75
|
+
<p>Models are PHP classes that are designed to work with information in your database. For example, let's say
|
|
76
|
+
you use CodeIgniter to manage a blog. You might have a model class that contains functions to insert, update, and
|
|
77
|
+
retrieve your blog data. Here is an example of what such a model class might look like:</p>
|
|
78
|
+
|
|
79
|
+
<code>
|
|
80
|
+
class Blogmodel extends Model {<br />
|
|
81
|
+
<br />
|
|
82
|
+
var $title = '';<br />
|
|
83
|
+
var $content = '';<br />
|
|
84
|
+
var $date = '';<br />
|
|
85
|
+
<br />
|
|
86
|
+
function Blogmodel()<br />
|
|
87
|
+
{<br />
|
|
88
|
+
// Call the Model constructor<br />
|
|
89
|
+
parent::Model();<br />
|
|
90
|
+
}<br />
|
|
91
|
+
<br />
|
|
92
|
+
function get_last_ten_entries()<br />
|
|
93
|
+
{<br />
|
|
94
|
+
$query = $this->db->get('entries', 10);<br />
|
|
95
|
+
return $query->result();<br />
|
|
96
|
+
}<br />
|
|
97
|
+
<br />
|
|
98
|
+
function insert_entry()<br />
|
|
99
|
+
{<br />
|
|
100
|
+
$this->title = $_POST['title']; // please read the below note<br />
|
|
101
|
+
$this->content = $_POST['content'];<br />
|
|
102
|
+
$this->date = time();<br />
|
|
103
|
+
<br />
|
|
104
|
+
$this->db->insert('entries', $this);<br />
|
|
105
|
+
}<br />
|
|
106
|
+
<br />
|
|
107
|
+
function update_entry()<br />
|
|
108
|
+
{<br />
|
|
109
|
+
$this->title = $_POST['title'];<br />
|
|
110
|
+
$this->content = $_POST['content'];<br />
|
|
111
|
+
$this->date = time();<br />
|
|
112
|
+
<br />
|
|
113
|
+
$this->db->update('entries', $this, array('id' => $_POST['id']));<br />
|
|
114
|
+
}<br />
|
|
115
|
+
<br />
|
|
116
|
+
}</code>
|
|
117
|
+
|
|
118
|
+
<p>Note: The functions in the above example use the <a href="../database/active_record.html">Active Record</a> database functions.</p>
|
|
119
|
+
<p class="important"><strong>Note:</strong> For the sake of simplicity in this example we're using $_POST directly. This is generally bad practice, and a more common approach would be to use the <a href="../libraries/input.html">Input Class</a> $this->input->post('title')</p>
|
|
120
|
+
<h2><a name="anatomy"></a>Anatomy of a Model</h2>
|
|
121
|
+
|
|
122
|
+
<p>Model classes are stored in your <dfn>application/models/</dfn> folder. They can be nested within sub-folders if you
|
|
123
|
+
want this type of organization.</p>
|
|
124
|
+
|
|
125
|
+
<p>The basic prototype for a model class is this:</p>
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
<code>
|
|
129
|
+
class <var>Model_name</var> extends Model {<br />
|
|
130
|
+
<br />
|
|
131
|
+
function <var>Model_name</var>()<br />
|
|
132
|
+
{<br />
|
|
133
|
+
parent::Model();<br />
|
|
134
|
+
}<br />
|
|
135
|
+
}</code>
|
|
136
|
+
|
|
137
|
+
<p>Where <var>Model_name</var> is the name of your class. Class names <strong>must</strong> have the first letter capitalized with the rest of the name lowercase.
|
|
138
|
+
Make sure your class extends the base Model class.</p>
|
|
139
|
+
|
|
140
|
+
<p>The file name will be a lower case version of your class name. For example, if your class is this:</p>
|
|
141
|
+
|
|
142
|
+
<code>
|
|
143
|
+
class <var>User_model</var> extends Model {<br />
|
|
144
|
+
<br />
|
|
145
|
+
function <var>User_model</var>()<br />
|
|
146
|
+
{<br />
|
|
147
|
+
parent::Model();<br />
|
|
148
|
+
}<br />
|
|
149
|
+
}</code>
|
|
150
|
+
|
|
151
|
+
<p>Your file will be this:</p>
|
|
152
|
+
|
|
153
|
+
<code>application/models/<var>user_model.php</var></code>
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<h2><a name="loading"></a>Loading a Model</h2>
|
|
158
|
+
|
|
159
|
+
<p>Your models will typically be loaded and called from within your <a href="controllers.html">controller</a> functions.
|
|
160
|
+
To load a model you will use the following function:</p>
|
|
161
|
+
|
|
162
|
+
<code>$this->load->model('<var>Model_name</var>');</code>
|
|
163
|
+
|
|
164
|
+
<p>If your model is located in a sub-folder, include the relative path from your models folder. For example, if
|
|
165
|
+
you have a model located at <dfn>application/models/blog/queries.php</dfn> you'll load it using:</p>
|
|
166
|
+
|
|
167
|
+
<code>$this->load->model('<var>blog/queries</var>');</code>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<p>Once loaded, you will access your model functions using an object with the same name as your class:</p>
|
|
171
|
+
|
|
172
|
+
<code>
|
|
173
|
+
$this->load->model('<var>Model_name</var>');<br />
|
|
174
|
+
<br />
|
|
175
|
+
$this-><var>Model_name</var>->function();
|
|
176
|
+
</code>
|
|
177
|
+
|
|
178
|
+
<p>If you would like your model assigned to a different object name you can specify it via the second parameter of the loading
|
|
179
|
+
function:</p>
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
<code>
|
|
183
|
+
$this->load->model('<var>Model_name</var>', '<kbd>fubar</kbd>');<br />
|
|
184
|
+
<br />
|
|
185
|
+
$this-><kbd>fubar</kbd>->function();
|
|
186
|
+
</code>
|
|
187
|
+
|
|
188
|
+
<p>Here is an example of a controller, that loads a model, then serves a view:</p>
|
|
189
|
+
|
|
190
|
+
<code>
|
|
191
|
+
class Blog_controller extends Controller {<br />
|
|
192
|
+
<br />
|
|
193
|
+
function blog()<br />
|
|
194
|
+
{<br />
|
|
195
|
+
$this->load->model('Blog');<br />
|
|
196
|
+
<br />
|
|
197
|
+
$data['query'] = $this->Blog->get_last_ten_entries();<br /><br />
|
|
198
|
+
$this->load->view('blog', $data);<br />
|
|
199
|
+
}<br />
|
|
200
|
+
}</code>
|
|
201
|
+
|
|
202
|
+
<h2><a name="auto_load_model" id="auto_load_model"></a>Auto-loading Models</h2>
|
|
203
|
+
<p>If you find that you need a particular model globally throughout your application, you can tell CodeIgniter to auto-load it during system initialization. This is done by opening the application/config/autoload.php file and adding the model to the autoload array.</p>
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
<h2><a name="conn"></a>Connecting to your Database</h2>
|
|
207
|
+
|
|
208
|
+
<p>When a model is loaded it does <strong>NOT</strong> connect automatically to your database. The following options for connecting are available to you:</p>
|
|
209
|
+
|
|
210
|
+
<ul>
|
|
211
|
+
<li>You can connect using the standard database methods <a href="../database/connecting.html">described here</a>, either from within your Controller class or your Model class.</li>
|
|
212
|
+
<li>You can tell the model loading function to auto-connect by passing <kbd>TRUE</kbd> (boolean) via the third parameter,
|
|
213
|
+
and connectivity settings, as defined in your database config file will be used:
|
|
214
|
+
|
|
215
|
+
<code>$this->load->model('<var>Model_name</var>', '', <kbd>TRUE</kbd>);</code>
|
|
216
|
+
</li>
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
<li>You can manually pass database connectivity settings via the third parameter:
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
<code>$config['hostname'] = "localhost";<br />
|
|
223
|
+
$config['username'] = "myusername";<br />
|
|
224
|
+
$config['password'] = "mypassword";<br />
|
|
225
|
+
$config['database'] = "mydatabase";<br />
|
|
226
|
+
$config['dbdriver'] = "mysql";<br />
|
|
227
|
+
$config['dbprefix'] = "";<br />
|
|
228
|
+
$config['pconnect'] = FALSE;<br />
|
|
229
|
+
$config['db_debug'] = TRUE;<br />
|
|
230
|
+
<br />
|
|
231
|
+
$this->load->model('<var>Model_name</var>', '', <kbd>$config</kbd>);</code></li>
|
|
232
|
+
</ul>
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
</div>
|
|
236
|
+
<!-- END CONTENT -->
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
<div id="footer">
|
|
240
|
+
<p>
|
|
241
|
+
Previous Topic: <a href="views.html">Views</a>
|
|
242
|
+
·
|
|
243
|
+
<a href="#top">Top of Page</a> ·
|
|
244
|
+
<a href="../index.html">User Guide Home</a> ·
|
|
245
|
+
Next Topic: <a href="helpers.html">Helpers</a>
|
|
246
|
+
</p>
|
|
247
|
+
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
|
|
248
|
+
</div>
|
|
249
|
+
|
|
250
|
+
</body>
|
|
251
|
+
</html>
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Plugins : CodeIgniter User Guide</title>
|
|
7
|
+
|
|
8
|
+
<style type='text/css' media='all'>@import url('../userguide.css');</style>
|
|
9
|
+
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript" src="../nav/nav.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../nav/moo.fx.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
|
|
15
|
+
|
|
16
|
+
<meta http-equiv='expires' content='-1' />
|
|
17
|
+
<meta http-equiv= 'pragma' content='no-cache' />
|
|
18
|
+
<meta name='robots' content='all' />
|
|
19
|
+
<meta name='author' content='ExpressionEngine Dev Team' />
|
|
20
|
+
<meta name='description' content='CodeIgniter User Guide' />
|
|
21
|
+
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
|
|
25
|
+
<!-- START NAVIGATION -->
|
|
26
|
+
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
|
|
27
|
+
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
|
|
28
|
+
<div id="masthead">
|
|
29
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
30
|
+
<tr>
|
|
31
|
+
<td><h1>CodeIgniter User Guide Version 1.7.2</h1></td>
|
|
32
|
+
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
|
|
33
|
+
</tr>
|
|
34
|
+
</table>
|
|
35
|
+
</div>
|
|
36
|
+
<!-- END NAVIGATION -->
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<!-- START BREADCRUMB -->
|
|
40
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
41
|
+
<tr>
|
|
42
|
+
<td id="breadcrumb">
|
|
43
|
+
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
|
|
44
|
+
<a href="../index.html">User Guide Home</a> ›
|
|
45
|
+
Plugins
|
|
46
|
+
</td>
|
|
47
|
+
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
|
|
48
|
+
</tr>
|
|
49
|
+
</table>
|
|
50
|
+
<!-- END BREADCRUMB -->
|
|
51
|
+
|
|
52
|
+
<br clear="all" />
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<!-- START CONTENT -->
|
|
56
|
+
<div id="content">
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<h1>Plugins</h1>
|
|
60
|
+
|
|
61
|
+
<p>Plugins work almost identically to <a href="helpers.html">Helpers</a>. The main difference is that a plugin usually
|
|
62
|
+
provides a single function, whereas a Helper is usually a collection of functions. Helpers are also considered a part of
|
|
63
|
+
the core system; plugins are intended to be created and shared by our community.</p>
|
|
64
|
+
|
|
65
|
+
<p>Plugins should be saved to your <dfn>system/plugins</dfn> directory or you can create a folder called <kbd>plugins</kbd> inside
|
|
66
|
+
your <kbd>application</kbd> folder and store them there. CodeIgniter will look first in your <dfn>system/application/plugins</dfn>
|
|
67
|
+
directory. If the directory does not exist or the specified plugin is not located there CI will instead look in your global
|
|
68
|
+
<dfn>system/plugins</dfn> folder.</p>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<h2>Loading a Plugin</h2>
|
|
72
|
+
|
|
73
|
+
<p>Loading a plugin file is quite simple using the following function:</p>
|
|
74
|
+
|
|
75
|
+
<code>$this->load->plugin('<var>name</var>');</code>
|
|
76
|
+
|
|
77
|
+
<p>Where <var>name</var> is the file name of the plugin, without the .php file extension or the "plugin" part.</p>
|
|
78
|
+
|
|
79
|
+
<p>For example, to load the <dfn>Captcha</dfn> plugin, which is named <var>captcha_pi.php</var>, you will do this:</p>
|
|
80
|
+
|
|
81
|
+
<code>$this->load->plugin('<var>captcha</var>');</code>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<p>A plugin can be loaded anywhere within your <a href="../general/controllers.html">controller</a> functions (or even within your <a href="../general/views.html">View files</a>, although that's not a good practice),
|
|
86
|
+
as long as you load it before you use it. You can load your plugins in your controller constructor so that they become available
|
|
87
|
+
automatically in any function, or you can load a plugin in a specific function that needs it.</p>
|
|
88
|
+
|
|
89
|
+
<p class="important">Note: The Plugin loading function above does not return a value, so don't try to assign it to a variable. Just use it as shown.</p>
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<h2>Loading Multiple Plugins</h2>
|
|
93
|
+
|
|
94
|
+
<p>If you need to load more than one plugin you can specify them in an array, like this:</p>
|
|
95
|
+
|
|
96
|
+
<code>$this->load->plugin( <samp>array(</samp>'<var>plugin1</var>', '<var>plugin2</var>', '<var>plugin3</var>'<samp>)</samp> );</code>
|
|
97
|
+
|
|
98
|
+
<h2>Auto-loading Plugins</h2>
|
|
99
|
+
|
|
100
|
+
<p>If you find that you need a particular plugin globally throughout your application, you can tell CodeIgniter to auto-load it
|
|
101
|
+
during system initialization. This is done by opening the <var>application/config/autoload.php</var> file and adding the plugin to the autoload array.</p>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
<h2>Using a Plugin</h2>
|
|
105
|
+
|
|
106
|
+
<p>Once you've loaded the Plugin, you'll call it the way you would a standard PHP function.</p>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
</div>
|
|
112
|
+
<!-- END CONTENT -->
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
<div id="footer">
|
|
116
|
+
<p>
|
|
117
|
+
Previous Topic: <a href="helpers.html">Helpers</a>
|
|
118
|
+
·
|
|
119
|
+
<a href="#top">Top of Page</a> ·
|
|
120
|
+
<a href="../index.html">User Guide Home</a> ·
|
|
121
|
+
Next Topic: <a href="libraries.html">Using Libraries</a>
|
|
122
|
+
</p>
|
|
123
|
+
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
|
|
124
|
+
</div>
|
|
125
|
+
|
|
126
|
+
</body>
|
|
127
|
+
</html>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>Profiling Your Application : CodeIgniter User Guide</title>
|
|
7
|
+
|
|
8
|
+
<style type='text/css' media='all'>@import url('../userguide.css');</style>
|
|
9
|
+
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript" src="../nav/nav.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../nav/moo.fx.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
|
|
15
|
+
|
|
16
|
+
<meta http-equiv='expires' content='-1' />
|
|
17
|
+
<meta http-equiv= 'pragma' content='no-cache' />
|
|
18
|
+
<meta name='robots' content='all' />
|
|
19
|
+
<meta name='author' content='ExpressionEngine Dev Team' />
|
|
20
|
+
<meta name='description' content='CodeIgniter User Guide' />
|
|
21
|
+
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
|
|
25
|
+
<!-- START NAVIGATION -->
|
|
26
|
+
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
|
|
27
|
+
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
|
|
28
|
+
<div id="masthead">
|
|
29
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
30
|
+
<tr>
|
|
31
|
+
<td><h1>CodeIgniter User Guide Version 1.7.2</h1></td>
|
|
32
|
+
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
|
|
33
|
+
</tr>
|
|
34
|
+
</table>
|
|
35
|
+
</div>
|
|
36
|
+
<!-- END NAVIGATION -->
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<!-- START BREADCRUMB -->
|
|
40
|
+
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
|
41
|
+
<tr>
|
|
42
|
+
<td id="breadcrumb">
|
|
43
|
+
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
|
|
44
|
+
<a href="../index.html">User Guide Home</a> ›
|
|
45
|
+
Profiling Your Application
|
|
46
|
+
</td>
|
|
47
|
+
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
|
|
48
|
+
</tr>
|
|
49
|
+
</table>
|
|
50
|
+
<!-- END BREADCRUMB -->
|
|
51
|
+
|
|
52
|
+
<br clear="all" />
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<!-- START CONTENT -->
|
|
56
|
+
<div id="content">
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<h1>Profiling Your Application</h1>
|
|
60
|
+
|
|
61
|
+
<p>The Profiler Class will display benchmark results, queries you have run, and $_POST data at the bottom of your pages.
|
|
62
|
+
This information can be useful during development in order to help with debugging and optimization.</p>
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<h2>Initializing the Class</h2>
|
|
66
|
+
|
|
67
|
+
<p class="important"><strong>Important:</strong> This class does <kbd>NOT</kbd> need to be initialized. It is loaded automatically by the
|
|
68
|
+
<a href="../libraries/output.html">Output Class</a> if profiling is enabled as shown below.</p>
|
|
69
|
+
|
|
70
|
+
<h2>Enabling the Profiler</h2>
|
|
71
|
+
|
|
72
|
+
<p>To enable the profiler place the following function anywhere within your <a href="controllers.html">Controller</a> functions:</p>
|
|
73
|
+
<code>$this->output->enable_profiler(TRUE);</code>
|
|
74
|
+
|
|
75
|
+
<p>When enabled a report will be generated and inserted at the bottom of your pages.</p>
|
|
76
|
+
|
|
77
|
+
<p>To disable the profiler you will use:</p>
|
|
78
|
+
<code>$this->output->enable_profiler(FALSE);</code>
|
|
79
|
+
|
|
80
|
+
<h2>Setting Benchmark Points</h2>
|
|
81
|
+
|
|
82
|
+
<p>In order for the Profiler to compile and display your benchmark data you must name your mark points using specific syntax.</p>
|
|
83
|
+
|
|
84
|
+
<p>Please read the information on setting Benchmark points in <a href="../libraries/benchmark.html">Benchmark Class</a> page.</p>
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
</div>
|
|
89
|
+
<!-- END CONTENT -->
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<div id="footer">
|
|
93
|
+
<p>
|
|
94
|
+
Previous Topic: <a href="caching.html">Caching</a>
|
|
95
|
+
·
|
|
96
|
+
<a href="#top">Top of Page</a> ·
|
|
97
|
+
<a href="../index.html">User Guide Home</a> ·
|
|
98
|
+
Next Topic: <a href="managing_apps.html">Managing Applications</a>
|
|
99
|
+
</p>
|
|
100
|
+
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
</body>
|
|
104
|
+
</html>
|