blob: 5326f1c967ee89a5e97dc3188e566974e2ffe30d [file] [log] [blame]
Derek Jones37f4b9c2011-07-01 17:56:50 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.1.6 or newer
6 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Academic Free License version 3.0
10 *
11 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
21 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/)
22 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/*
29| -------------------------------------------------------------------
30| AUTO-LOADER
31| -------------------------------------------------------------------
32| This file specifies which systems should be loaded by default.
33|
34| In order to keep the framework as light-weight as possible only the
35| absolute minimal resources are loaded by default. For example,
36| the database is not connected to automatically since no assumption
Derek Jones37f4b9c2011-07-01 17:56:50 -050037| is made regarding whether you intend to use it. This file lets
Derek Allard2067d1a2008-11-13 22:59:24 +000038| you globally define which systems you would like loaded with every
39| request.
40|
41| -------------------------------------------------------------------
42| Instructions
43| -------------------------------------------------------------------
44|
45| These are the things you can load automatically:
46|
Phil Sturgeon9730c752010-12-15 10:50:15 +000047| 1. Packages
48| 2. Libraries
49| 3. Helper files
50| 4. Custom config files
51| 5. Language files
52| 6. Models
Derek Allard2067d1a2008-11-13 22:59:24 +000053|
54*/
55
56/*
57| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050058| Auto-load Packges
Phil Sturgeon9730c752010-12-15 10:50:15 +000059| -------------------------------------------------------------------
60| Prototype:
61|
Derek Jones37f4b9c2011-07-01 17:56:50 -050062| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
Phil Sturgeon9730c752010-12-15 10:50:15 +000063|
64*/
65
Greg Aker44885382011-04-19 15:28:40 -050066$autoload['packages'] = array();
Phil Sturgeon9730c752010-12-15 10:50:15 +000067
68
69/*
70| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050071| Auto-load Libraries
Derek Allard2067d1a2008-11-13 22:59:24 +000072| -------------------------------------------------------------------
73| These are the classes located in the system/libraries folder
Derek Jonesf0b39942010-03-25 10:08:20 -050074| or in your application/libraries folder.
Derek Allard2067d1a2008-11-13 22:59:24 +000075|
76| Prototype:
77|
78| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
79*/
80
81$autoload['libraries'] = array();
82
83
84/*
85| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050086| Auto-load Helper Files
Derek Allard2067d1a2008-11-13 22:59:24 +000087| -------------------------------------------------------------------
88| Prototype:
89|
90| $autoload['helper'] = array('url', 'file');
91*/
92
93$autoload['helper'] = array();
94
95
96/*
97| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050098| Auto-load Config files
Derek Allard2067d1a2008-11-13 22:59:24 +000099| -------------------------------------------------------------------
100| Prototype:
101|
102| $autoload['config'] = array('config1', 'config2');
103|
104| NOTE: This item is intended for use ONLY if you have created custom
Derek Jones37f4b9c2011-07-01 17:56:50 -0500105| config files. Otherwise, leave it blank.
Derek Allard2067d1a2008-11-13 22:59:24 +0000106|
107*/
108
109$autoload['config'] = array();
110
111
112/*
113| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500114| Auto-load Language files
Derek Allard2067d1a2008-11-13 22:59:24 +0000115| -------------------------------------------------------------------
116| Prototype:
117|
118| $autoload['language'] = array('lang1', 'lang2');
119|
Derek Jones37f4b9c2011-07-01 17:56:50 -0500120| NOTE: Do not include the "_lang" part of your file. For example
Derek Allard2067d1a2008-11-13 22:59:24 +0000121| "codeigniter_lang.php" would be referenced as array('codeigniter');
122|
123*/
124
125$autoload['language'] = array();
126
127
128/*
129| -------------------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500130| Auto-load Models
Derek Allard2067d1a2008-11-13 22:59:24 +0000131| -------------------------------------------------------------------
132| Prototype:
133|
134| $autoload['model'] = array('model1', 'model2');
135|
136*/
137
138$autoload['model'] = array();
139
140
Derek Allard2067d1a2008-11-13 22:59:24 +0000141/* End of file autoload.php */
Derek Jonesf0b39942010-03-25 10:08:20 -0500142/* Location: ./application/config/autoload.php */