Derek Allard | 3d378b1 | 2007-05-08 23:03:59 +0000 | [diff] [blame] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
| 2 | /*
|
| 3 | | -------------------------------------------------------------------
|
| 4 | | AUTO-LOADER
|
| 5 | | -------------------------------------------------------------------
|
| 6 | | This file specifies which systems should be loaded by default.
|
| 7 | |
|
| 8 | | In order to keep the framework as light-weight as possible only the
|
| 9 | | absolute minimal resources are loaded by default. For example,
|
| 10 | | the database is not connected to automatically since no assumption
|
| 11 | | is made regarding whether you intend to use it. This file lets
|
| 12 | | you globally define which systems you would like loaded with every
|
| 13 | | request.
|
| 14 | |
|
| 15 | | -------------------------------------------------------------------
|
| 16 | | Instructions
|
| 17 | | -------------------------------------------------------------------
|
| 18 | |
|
| 19 | | These are the things you can load automatically:
|
| 20 | |
|
| 21 | | 1. Libraries
|
| 22 | | 2. Helper files
|
| 23 | | 3. Plugins
|
| 24 | | 4. Custom config files
|
| 25 | |
|
| 26 | */
|
| 27 |
|
| 28 | /*
|
| 29 | | -------------------------------------------------------------------
|
| 30 | | Auto-load Libraries
|
| 31 | | -------------------------------------------------------------------
|
| 32 | | These are the classes located in the system/libraries folder
|
| 33 | | or in your system/application/libraries folder.
|
| 34 | |
|
| 35 | | Prototype:
|
| 36 | |
|
| 37 | | $autoload['libraries'] = array('database', 'session', 'xmlrpc');
|
| 38 | */
|
| 39 |
|
| 40 | $autoload['libraries'] = array();
|
| 41 |
|
| 42 |
|
| 43 | /*
|
| 44 | | -------------------------------------------------------------------
|
| 45 | | Auto-load Helper Files
|
| 46 | | -------------------------------------------------------------------
|
| 47 | | Prototype:
|
| 48 | |
|
| 49 | | $autoload['helper'] = array('url', 'file');
|
| 50 | */
|
| 51 |
|
| 52 | $autoload['helper'] = array();
|
| 53 |
|
| 54 |
|
| 55 | /*
|
| 56 | | -------------------------------------------------------------------
|
| 57 | | Auto-load Plugins
|
| 58 | | -------------------------------------------------------------------
|
| 59 | | Prototype:
|
| 60 | |
|
| 61 | | $autoload['plugin'] = array('captcha', 'js_calendar');
|
| 62 | */
|
| 63 |
|
| 64 | $autoload['plugin'] = array();
|
| 65 |
|
| 66 |
|
| 67 | /*
|
| 68 | | -------------------------------------------------------------------
|
| 69 | | Auto-load Config files
|
| 70 | | -------------------------------------------------------------------
|
| 71 | | Prototype:
|
| 72 | |
|
| 73 | | $autoload['config'] = array('config1', 'config2');
|
| 74 | |
|
| 75 | | NOTE: This item is intended for use ONLY if you have created custom
|
| 76 | | config files. Otherwise, leave it blank.
|
| 77 | |
|
| 78 | */
|
| 79 |
|
| 80 | $autoload['config'] = array();
|
| 81 |
|
| 82 |
|
| 83 | /*
|
| 84 | | -------------------------------------------------------------------
|
Derek Allard | c9e2b10 | 2007-07-12 12:14:45 +0000 | [diff] [blame] | 85 | | Auto-load Language files
|
| 86 | | -------------------------------------------------------------------
|
| 87 | | Prototype:
|
| 88 | |
|
| 89 | | $autoload['language'] = array('lang1', 'lang2');
|
| 90 | |
|
| 91 | | NOTE: Do not include the "_lang" part of your file. For example
|
| 92 | | "codeigniter_lang.php" would be referenced as array('codeigniter');
|
| 93 | |
|
| 94 | */
|
| 95 |
|
Derek Jones | 3f2fc0d | 2007-07-12 13:38:18 +0000 | [diff] [blame^] | 96 | $autoload['language'] = array();
|
Derek Allard | c9e2b10 | 2007-07-12 12:14:45 +0000 | [diff] [blame] | 97 |
|
| 98 | /*
|
| 99 | | -------------------------------------------------------------------
|
Derek Allard | 3d378b1 | 2007-05-08 23:03:59 +0000 | [diff] [blame] | 100 | | Auto-load Core Libraries
|
| 101 | | -------------------------------------------------------------------
|
| 102 | |
|
| 103 | | DEPRECATED: Use $autoload['libraries'] above instead.
|
| 104 | |
|
| 105 | */
|
| 106 | // $autoload['core'] = array();
|
| 107 |
|
| 108 |
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 109 | ?> |