blob: c304618a658292405cf840cf4a10319f2394cee8 [file] [log] [blame]
darwineld8bef8a2014-02-11 20:13:22 +01001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreeve734b382012-03-26 13:42:36 +03008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreeve734b382012-03-26 13:42:36 +030010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Jonesf4a4bd82011-10-20 12:18:42 -050036 * @filesource
37 */
darwineld8bef8a2014-02-11 20:13:22 +010038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -050039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/*
41| -------------------------------------------------------------------
42| AUTO-LOADER
43| -------------------------------------------------------------------
44| This file specifies which systems should be loaded by default.
45|
46| In order to keep the framework as light-weight as possible only the
47| absolute minimal resources are loaded by default. For example,
48| the database is not connected to automatically since no assumption
Derek Jones37f4b9c2011-07-01 17:56:50 -050049| is made regarding whether you intend to use it. This file lets
Derek Allard2067d1a2008-11-13 22:59:24 +000050| you globally define which systems you would like loaded with every
51| request.
52|
53| -------------------------------------------------------------------
54| Instructions
55| -------------------------------------------------------------------
56|
57| These are the things you can load automatically:
58|
Phil Sturgeon9730c752010-12-15 10:50:15 +000059| 1. Packages
60| 2. Libraries
dchill42f8f36db2012-08-30 14:17:28 -040061| 3. Drivers
62| 4. Helper files
63| 5. Custom config files
64| 6. Language files
65| 7. Models
Derek Allard2067d1a2008-11-13 22:59:24 +000066|
67*/
68
69/*
70| -------------------------------------------------------------------
Nic4673d422013-01-09 09:53:41 +020071| Auto-load Packages
Phil Sturgeon9730c752010-12-15 10:50:15 +000072| -------------------------------------------------------------------
73| Prototype:
74|
Derek Jones37f4b9c2011-07-01 17:56:50 -050075| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
Phil Sturgeon9730c752010-12-15 10:50:15 +000076|
77*/
78
Greg Aker44885382011-04-19 15:28:40 -050079$autoload['packages'] = array();
Phil Sturgeon9730c752010-12-15 10:50:15 +000080
81
82/*
83| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050084| Auto-load Libraries
Derek Allard2067d1a2008-11-13 22:59:24 +000085| -------------------------------------------------------------------
86| These are the classes located in the system/libraries folder
Derek Jonesf0b39942010-03-25 10:08:20 -050087| or in your application/libraries folder.
Derek Allard2067d1a2008-11-13 22:59:24 +000088|
89| Prototype:
90|
dchill42f8f36db2012-08-30 14:17:28 -040091| $autoload['libraries'] = array('database', 'email', 'xmlrpc');
Andrey Andreev88cf55b2014-01-17 15:38:30 +020092|
93| You can also supply an alternative library name to be assigned
94| in the controller:
95|
96| $autoload['libraries'] = array('user_agent' => 'ua');
Derek Allard2067d1a2008-11-13 22:59:24 +000097*/
98
99$autoload['libraries'] = array();
100
101
102/*
103| -------------------------------------------------------------------
dchill42f8f36db2012-08-30 14:17:28 -0400104| Auto-load Drivers
105| -------------------------------------------------------------------
106| These classes are located in the system/libraries folder or in your
107| application/libraries folder within their own subdirectory. They
108| offer multiple interchangeable driver options.
109|
110| Prototype:
111|
112| $autoload['drivers'] = array('session', 'cache');
113*/
114
115$autoload['drivers'] = array();
116
117
118/*
119| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500120| Auto-load Helper Files
Derek Allard2067d1a2008-11-13 22:59:24 +0000121| -------------------------------------------------------------------
122| Prototype:
123|
124| $autoload['helper'] = array('url', 'file');
125*/
126
127$autoload['helper'] = array();
128
129
130/*
131| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500132| Auto-load Config files
Derek Allard2067d1a2008-11-13 22:59:24 +0000133| -------------------------------------------------------------------
134| Prototype:
135|
136| $autoload['config'] = array('config1', 'config2');
137|
138| NOTE: This item is intended for use ONLY if you have created custom
Derek Jones37f4b9c2011-07-01 17:56:50 -0500139| config files. Otherwise, leave it blank.
Derek Allard2067d1a2008-11-13 22:59:24 +0000140|
141*/
142
143$autoload['config'] = array();
144
145
146/*
147| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500148| Auto-load Language files
Derek Allard2067d1a2008-11-13 22:59:24 +0000149| -------------------------------------------------------------------
150| Prototype:
151|
152| $autoload['language'] = array('lang1', 'lang2');
153|
Derek Jones37f4b9c2011-07-01 17:56:50 -0500154| NOTE: Do not include the "_lang" part of your file. For example
Derek Allard2067d1a2008-11-13 22:59:24 +0000155| "codeigniter_lang.php" would be referenced as array('codeigniter');
156|
157*/
158
159$autoload['language'] = array();
160
161
162/*
163| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500164| Auto-load Models
Derek Allard2067d1a2008-11-13 22:59:24 +0000165| -------------------------------------------------------------------
166| Prototype:
167|
Andrey Andreev5a519db2013-01-12 04:19:19 +0200168| $autoload['model'] = array('first_model', 'second_model');
Derek Allard2067d1a2008-11-13 22:59:24 +0000169|
Andrey Andreev5a519db2013-01-12 04:19:19 +0200170| You can also supply an alternative model name to be assigned
171| in the controller:
172|
173| $autoload['model'] = array('first_model' => 'first');
Derek Allard2067d1a2008-11-13 22:59:24 +0000174*/
175
176$autoload['model'] = array();
177
178
Derek Allard2067d1a2008-11-13 22:59:24 +0000179/* End of file autoload.php */
Andrey Andreev5a519db2013-01-12 04:19:19 +0200180/* Location: ./application/config/autoload.php */