blob: e7c6f0db1ecce2f4eabf05c3ec1ae63f09e3f694 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?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
Derek Jonesc6da5032010-03-09 20:44:27 -060023| 3. Custom config files
24| 4. Language files
25| 5. Models
Derek Allard2067d1a2008-11-13 22:59:24 +000026|
27*/
28
29/*
30| -------------------------------------------------------------------
31| Auto-load Libraries
32| -------------------------------------------------------------------
33| These are the classes located in the system/libraries folder
34| or in your system/application/libraries folder.
35|
36| Prototype:
37|
38| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
39*/
40
41$autoload['libraries'] = array();
42
43
44/*
45| -------------------------------------------------------------------
46| Auto-load Helper Files
47| -------------------------------------------------------------------
48| Prototype:
49|
50| $autoload['helper'] = array('url', 'file');
51*/
52
53$autoload['helper'] = array();
54
55
56/*
57| -------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +000058| Auto-load Config files
59| -------------------------------------------------------------------
60| Prototype:
61|
62| $autoload['config'] = array('config1', 'config2');
63|
64| NOTE: This item is intended for use ONLY if you have created custom
65| config files. Otherwise, leave it blank.
66|
67*/
68
69$autoload['config'] = array();
70
71
72/*
73| -------------------------------------------------------------------
74| Auto-load Language files
75| -------------------------------------------------------------------
76| Prototype:
77|
78| $autoload['language'] = array('lang1', 'lang2');
79|
80| NOTE: Do not include the "_lang" part of your file. For example
81| "codeigniter_lang.php" would be referenced as array('codeigniter');
82|
83*/
84
85$autoload['language'] = array();
86
87
88/*
89| -------------------------------------------------------------------
90| Auto-load Models
91| -------------------------------------------------------------------
92| Prototype:
93|
94| $autoload['model'] = array('model1', 'model2');
95|
96*/
97
98$autoload['model'] = array();
99
100
101
102/* End of file autoload.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000103/* Location: ./system/application/config/autoload.php */