00001 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 00002 /* 00003 | ------------------------------------------------------------------- 00004 | AUTO-LOADER 00005 | ------------------------------------------------------------------- 00006 | This file specifies which systems should be loaded by default. 00007 | 00008 | In order to keep the framework as light-weight as possible only the 00009 | absolute minimal resources are loaded by default. For example, 00010 | the database is not connected to automatically since no assumption 00011 | is made regarding whether you intend to use it. This file lets 00012 | you globally define which systems you would like loaded with every 00013 | request. 00014 | 00015 | ------------------------------------------------------------------- 00016 | Instructions 00017 | ------------------------------------------------------------------- 00018 | 00019 | These are the things you can load automatically: 00020 | 00021 | 1. Libraries 00022 | 2. Helper files 00023 | 3. Plugins 00024 | 4. Custom config files 00025 | 5. Language files 00026 | 6. Models 00027 | 00028 */ 00029 00030 /* 00031 | ------------------------------------------------------------------- 00032 | Auto-load Libraries 00033 | ------------------------------------------------------------------- 00034 | These are the classes located in the system/libraries folder 00035 | or in your system/application/libraries folder. 00036 | 00037 | Prototype: 00038 | 00039 | $autoload['libraries'] = array('database', 'session', 'xmlrpc'); 00040 */ 00041 00042 $autoload['libraries'] = array(); 00043 00044 00045 /* 00046 | ------------------------------------------------------------------- 00047 | Auto-load Helper Files 00048 | ------------------------------------------------------------------- 00049 | Prototype: 00050 | 00051 | $autoload['helper'] = array('url', 'file'); 00052 */ 00053 00054 $autoload['helper'] = array(); 00055 00056 00057 /* 00058 | ------------------------------------------------------------------- 00059 | Auto-load Plugins 00060 | ------------------------------------------------------------------- 00061 | Prototype: 00062 | 00063 | $autoload['plugin'] = array('captcha', 'js_calendar'); 00064 */ 00065 00066 $autoload['plugin'] = array(); 00067 00068 00069 /* 00070 | ------------------------------------------------------------------- 00071 | Auto-load Config files 00072 | ------------------------------------------------------------------- 00073 | Prototype: 00074 | 00075 | $autoload['config'] = array('config1', 'config2'); 00076 | 00077 | NOTE: This item is intended for use ONLY if you have created custom 00078 | config files. Otherwise, leave it blank. 00079 | 00080 */ 00081 00082 $autoload['config'] = array(); 00083 00084 00085 /* 00086 | ------------------------------------------------------------------- 00087 | Auto-load Language files 00088 | ------------------------------------------------------------------- 00089 | Prototype: 00090 | 00091 | $autoload['language'] = array('lang1', 'lang2'); 00092 | 00093 | NOTE: Do not include the "_lang" part of your file. For example 00094 | "codeigniter_lang.php" would be referenced as array('codeigniter'); 00095 | 00096 */ 00097 00098 $autoload['language'] = array(); 00099 00100 00101 /* 00102 | ------------------------------------------------------------------- 00103 | Auto-load Models 00104 | ------------------------------------------------------------------- 00105 | Prototype: 00106 | 00107 | $autoload['model'] = array('model1', 'model2'); 00108 | 00109 */ 00110 00111 $autoload['model'] = array(); 00112 00113 00114 /* 00115 | ------------------------------------------------------------------- 00116 | Auto-load Core Libraries 00117 | ------------------------------------------------------------------- 00118 | 00119 | DEPRECATED: Use $autoload['libraries'] above instead. 00120 | 00121 */ 00122 // $autoload['core'] = array(); 00123 00124 00125 00126 /* End of file autoload.php */ 00127 /* Location: ./system/application/config/autoload.php */