blob: 53129c9c636271bc66a2d75ed2a7ac3aa24bec00 [file] [log] [blame]
Derek Jones37f4b9c2011-07-01 17:56:50 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/*
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
Derek Jones37f4b9c2011-07-01 17:56:50 -050011| is made regarding whether you intend to use it. This file lets
Derek Allard2067d1a2008-11-13 22:59:24 +000012| 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|
Phil Sturgeon9730c752010-12-15 10:50:15 +000021| 1. Packages
22| 2. Libraries
23| 3. Helper files
24| 4. Custom config files
25| 5. Language files
26| 6. Models
Derek Allard2067d1a2008-11-13 22:59:24 +000027|
28*/
29
30/*
31| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050032| Auto-load Packges
Phil Sturgeon9730c752010-12-15 10:50:15 +000033| -------------------------------------------------------------------
34| Prototype:
35|
Derek Jones37f4b9c2011-07-01 17:56:50 -050036| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
Phil Sturgeon9730c752010-12-15 10:50:15 +000037|
38*/
39
Greg Aker44885382011-04-19 15:28:40 -050040$autoload['packages'] = array();
Phil Sturgeon9730c752010-12-15 10:50:15 +000041
42
43/*
44| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050045| Auto-load Libraries
Derek Allard2067d1a2008-11-13 22:59:24 +000046| -------------------------------------------------------------------
47| These are the classes located in the system/libraries folder
Derek Jonesf0b39942010-03-25 10:08:20 -050048| or in your application/libraries folder.
Derek Allard2067d1a2008-11-13 22:59:24 +000049|
50| Prototype:
51|
52| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
53*/
54
55$autoload['libraries'] = array();
56
57
58/*
59| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050060| Auto-load Helper Files
Derek Allard2067d1a2008-11-13 22:59:24 +000061| -------------------------------------------------------------------
62| Prototype:
63|
64| $autoload['helper'] = array('url', 'file');
65*/
66
67$autoload['helper'] = array();
68
69
70/*
71| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050072| Auto-load Config files
Derek Allard2067d1a2008-11-13 22:59:24 +000073| -------------------------------------------------------------------
74| Prototype:
75|
76| $autoload['config'] = array('config1', 'config2');
77|
78| NOTE: This item is intended for use ONLY if you have created custom
Derek Jones37f4b9c2011-07-01 17:56:50 -050079| config files. Otherwise, leave it blank.
Derek Allard2067d1a2008-11-13 22:59:24 +000080|
81*/
82
83$autoload['config'] = array();
84
85
86/*
87| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050088| Auto-load Language files
Derek Allard2067d1a2008-11-13 22:59:24 +000089| -------------------------------------------------------------------
90| Prototype:
91|
92| $autoload['language'] = array('lang1', 'lang2');
93|
Derek Jones37f4b9c2011-07-01 17:56:50 -050094| NOTE: Do not include the "_lang" part of your file. For example
Derek Allard2067d1a2008-11-13 22:59:24 +000095| "codeigniter_lang.php" would be referenced as array('codeigniter');
96|
97*/
98
99$autoload['language'] = array();
100
101
102/*
103| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500104| Auto-load Models
Derek Allard2067d1a2008-11-13 22:59:24 +0000105| -------------------------------------------------------------------
106| Prototype:
107|
108| $autoload['model'] = array('model1', 'model2');
109|
110*/
111
112$autoload['model'] = array();
113
114
Derek Allard2067d1a2008-11-13 22:59:24 +0000115/* End of file autoload.php */
Derek Jonesf0b39942010-03-25 10:08:20 -0500116/* Location: ./application/config/autoload.php */