diff options
author | admin <devnull@localhost> | 2006-09-26 09:52:09 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-26 09:52:09 +0200 |
commit | 7981a9a752c339611ae10a252469f9dbc266fb96 (patch) | |
tree | 9a66510a001a586e381b73c355b9888d64519b1a /user_guide/general | |
parent | ebbe383453f3f18d09a8c7f3437d5712bdb8e650 (diff) |
Diffstat (limited to 'user_guide/general')
-rw-r--r-- | user_guide/general/controllers.html | 3 | ||||
-rw-r--r-- | user_guide/general/libraries.html | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index 4e39b23e2..54366ce36 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -375,8 +375,9 @@ is a list of reserved names. Do not name your controller functions any of these <li>_ci_autoload</li>
<li>_ci_autoloader</li>
<li>_ci_assign_core</li>
-<li>_ci_initialize</li>
+<li>_ci_init_class</li>
<li>_ci_init_database</li>
+<li>_ci_init_model</li>
<li>_ci_init_scaffolding</li>
<li>_ci_is_loaded</li>
<li>_ci_load</li>
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html index 231f1096b..5fc389be6 100644 --- a/user_guide/general/libraries.html +++ b/user_guide/general/libraries.html @@ -62,6 +62,7 @@ Using Code Igniter Libraries <h1>Using Code Igniter Libraries</h1>
+
<p>All of the available libraries are located in your <dfn>system/libraries</dfn> folder.
In most cases, to use one of these classes involves initializing it within a <a href="controllers.html">controller</a> using the following initialization function:</p>
|