blob: 8bb4181b5de116f8af53c34ec3ad8079aaa71083 [file] [log] [blame]
Derek Allard3d378b12007-05-08 23:03:59 +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
23| 3. Plugins
24| 4. Custom config files
Derek Allard593712b2007-07-12 20:01:19 +000025| 5. Language files
Derek Allard3d378b12007-05-08 23:03:59 +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| -------------------------------------------------------------------
58| Auto-load Plugins
59| -------------------------------------------------------------------
60| Prototype:
61|
62| $autoload['plugin'] = array('captcha', 'js_calendar');
63*/
64
65$autoload['plugin'] = array();
66
67
68/*
69| -------------------------------------------------------------------
70| Auto-load Config files
71| -------------------------------------------------------------------
72| Prototype:
73|
74| $autoload['config'] = array('config1', 'config2');
75|
76| NOTE: This item is intended for use ONLY if you have created custom
77| config files. Otherwise, leave it blank.
78|
79*/
80
81$autoload['config'] = array();
82
83
84/*
85| -------------------------------------------------------------------
Derek Allardc9e2b102007-07-12 12:14:45 +000086| Auto-load Language files
87| -------------------------------------------------------------------
88| Prototype:
89|
90| $autoload['language'] = array('lang1', 'lang2');
91|
92| NOTE: Do not include the "_lang" part of your file. For example
93| "codeigniter_lang.php" would be referenced as array('codeigniter');
94|
95*/
96
Derek Jones3f2fc0d2007-07-12 13:38:18 +000097$autoload['language'] = array();
Derek Allardc9e2b102007-07-12 12:14:45 +000098
99/*
100| -------------------------------------------------------------------
Derek Allard3d378b12007-05-08 23:03:59 +0000101| Auto-load Core Libraries
102| -------------------------------------------------------------------
103|
104| DEPRECATED: Use $autoload['libraries'] above instead.
105|
106*/
107// $autoload['core'] = array();
108
109
adminb0dd10f2006-08-25 17:25:49 +0000110?>