summaryrefslogtreecommitdiffstats
path: root/system/application/config
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-21 08:22:05 +0200
committeradmin <devnull@localhost>2006-09-21 08:22:05 +0200
commitd48ef1c8e2e84067a58818291935593d70e491f8 (patch)
treea21500ef1534140f3442a0eb2bf2ee96b7be8bd8 /system/application/config
parent1a3ffb457fc1f0fc248d8178b228e9a2c8569445 (diff)
Diffstat (limited to 'system/application/config')
-rw-r--r--system/application/config/autoload.php27
1 files changed, 18 insertions, 9 deletions
diff --git a/system/application/config/autoload.php b/system/application/config/autoload.php
index 1ed6f1757..4efe3be41 100644
--- a/system/application/config/autoload.php
+++ b/system/application/config/autoload.php
@@ -10,8 +10,7 @@
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
-| request. In addition to core systems you can auto-load plugins,
-| helper files, config files, and your own scripts.
+| request.
|
| -------------------------------------------------------------------
| Instructions
@@ -19,27 +18,27 @@
|
| These are the things you can load automatically:
|
-| 1. Core classes
+| 1. Libraries
| 2. Helper files
| 3. Plugins
| 4. Scripts
| 5. Custom config files
|
-| Note: The items will be loaded in the order that they are defined
-|
-| Please read the user guide for more detailed information
*/
/*
| -------------------------------------------------------------------
-| Auto-load Core Classes
+| Auto-load Libraries
| -------------------------------------------------------------------
+| These are the classes located in the system/libraries folder
+| or in your system/application/libraries folder.
+|
| Prototype:
|
-| $autoload['core'] = array('database', 'session', 'xmlrpc');
+| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
-$autoload['core'] = array();
+$autoload['libraries'] = array();
/*
@@ -97,5 +96,15 @@ $autoload['script'] = array();
$autoload['config'] = array();
+/*
+| -------------------------------------------------------------------
+| Auto-load Core Libraries
+| -------------------------------------------------------------------
+|
+| DEPRECATED: Use $autoload $autoload['libraries'] instead.
+|
+*/
+// $autoload['core'] = array();
+
?> \ No newline at end of file