diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-08-30 22:20:25 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-08-30 22:20:25 +0200 |
commit | 20ff7666f11f19c39cd91bd42a3b88293b8e9a26 (patch) | |
tree | 5f44431ee154cba83684712eaf7bf984d7e5e217 /application/config/autoload.php | |
parent | ff1c1254c60867763f4e3cc8e4a001137406a7f6 (diff) | |
parent | f8f36db2d967efe8178b78a59ead14c05f50dc12 (diff) |
Merge pull request #1749 from dchill42/sess_config
Added session driver config items
Diffstat (limited to 'application/config/autoload.php')
-rw-r--r-- | application/config/autoload.php | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/application/config/autoload.php b/application/config/autoload.php index b3e63cbf6..ff153fb48 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -46,10 +46,11 @@ | | 1. Packages | 2. Libraries -| 3. Helper files -| 4. Custom config files -| 5. Language files -| 6. Models +| 3. Drivers +| 4. Helper files +| 5. Custom config files +| 6. Language files +| 7. Models | */ @@ -75,7 +76,7 @@ $autoload['packages'] = array(); | | Prototype: | -| $autoload['libraries'] = array('database', 'session', 'xmlrpc'); +| $autoload['libraries'] = array('database', 'email', 'xmlrpc'); */ $autoload['libraries'] = array(); @@ -83,6 +84,22 @@ $autoload['libraries'] = array(); /* | ------------------------------------------------------------------- +| Auto-load Drivers +| ------------------------------------------------------------------- +| These classes are located in the system/libraries folder or in your +| application/libraries folder within their own subdirectory. They +| offer multiple interchangeable driver options. +| +| Prototype: +| +| $autoload['drivers'] = array('session', 'cache'); +*/ + +$autoload['drivers'] = array(); + + +/* +| ------------------------------------------------------------------- | Auto-load Helper Files | ------------------------------------------------------------------- | Prototype: @@ -139,4 +156,4 @@ $autoload['model'] = array(); /* End of file autoload.php */ -/* Location: ./application/config/autoload.php */
\ No newline at end of file +/* Location: ./application/config/autoload.php */ |