1 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
3 | -------------------------------------------------------------------
5 | -------------------------------------------------------------------
6 | This file specifies which systems should be loaded by default.
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
15 | -------------------------------------------------------------------
17 | -------------------------------------------------------------------
19 | These are the things you can load automatically:
24 | 4. Custom config files
31 | -------------------------------------------------------------------
33 | -------------------------------------------------------------------
34 | These are the classes located in the system/libraries folder
35 | or in your system/application/libraries folder.
39 | $autoload['libraries'] = array('database', 'session', 'xmlrpc');
42 $autoload['libraries'] = array();
46 | -------------------------------------------------------------------
47 | Auto-load Helper Files
48 | -------------------------------------------------------------------
51 | $autoload['helper'] = array('url', 'file');
54 $autoload['helper'] = array();
58 | -------------------------------------------------------------------
60 | -------------------------------------------------------------------
63 | $autoload['plugin'] = array('captcha', 'js_calendar');
66 $autoload['plugin'] = array();
70 | -------------------------------------------------------------------
71 | Auto-load Config files
72 | -------------------------------------------------------------------
75 | $autoload['config'] = array('config1', 'config2');
77 | NOTE: This item is intended for use ONLY if you have created custom
78 | config files. Otherwise, leave it blank.
82 $autoload['config'] = array();
86 | -------------------------------------------------------------------
87 | Auto-load Language files
88 | -------------------------------------------------------------------
91 | $autoload['language'] = array('lang1', 'lang2');
93 | NOTE: Do not include the "_lang" part of your file. For example
94 | "codeigniter_lang.php" would be referenced as array('codeigniter');
98 $autoload['language'] = array();
102 | -------------------------------------------------------------------
104 | -------------------------------------------------------------------
107 | $autoload['model'] = array('model1', 'model2');
111 $autoload['model'] = array();
115 /* End of file autoload.php */
116 /* Location: ./system/application/config/autoload.php */