blob: f3b30a410f9e01f7766beb8a236a62ed8fd69c45 [file] [log] [blame]
adminb0dd10f2006-08-25 17:25:49 +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
admind48ef1c2006-09-21 06:22:05 +000013| request.
adminb0dd10f2006-08-25 17:25:49 +000014|
15| -------------------------------------------------------------------
16| Instructions
17| -------------------------------------------------------------------
18|
19| These are the things you can load automatically:
20|
admind48ef1c2006-09-21 06:22:05 +000021| 1. Libraries
adminb0dd10f2006-08-25 17:25:49 +000022| 2. Helper files
23| 3. Plugins
adminb0dd10f2006-08-25 17:25:49 +000024| 5. Custom config files
25|
adminb0dd10f2006-08-25 17:25:49 +000026*/
27
28/*
29| -------------------------------------------------------------------
admind48ef1c2006-09-21 06:22:05 +000030| Auto-load Libraries
adminb0dd10f2006-08-25 17:25:49 +000031| -------------------------------------------------------------------
admind48ef1c2006-09-21 06:22:05 +000032| These are the classes located in the system/libraries folder
33| or in your system/application/libraries folder.
34|
adminb0dd10f2006-08-25 17:25:49 +000035| Prototype:
36|
admind48ef1c2006-09-21 06:22:05 +000037| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
adminb0dd10f2006-08-25 17:25:49 +000038*/
39
adminb87cf232006-10-04 07:46:05 +000040$autoload['libraries'] = array('database');
adminb0dd10f2006-08-25 17:25:49 +000041
42
43/*
44| -------------------------------------------------------------------
45| Auto-load Helper Files
46| -------------------------------------------------------------------
47| Prototype:
48|
49| $autoload['helper'] = array('url', 'file');
50*/
51
52$autoload['helper'] = array();
53
54
55/*
56| -------------------------------------------------------------------
57| Auto-load Plugins
58| -------------------------------------------------------------------
59| Prototype:
60|
61| $autoload['plugin'] = array('captcha', 'js_calendar');
62*/
63
64$autoload['plugin'] = array();
65
66
67/*
68| -------------------------------------------------------------------
adminb0dd10f2006-08-25 17:25:49 +000069| Auto-load Config files
70| -------------------------------------------------------------------
71| Prototype:
72|
73| $autoload['config'] = array('config1', 'config2');
74|
75| NOTE: This item is intended for use ONLY if you have created custom
76| config files. Otherwise, leave it blank.
77|
78*/
79
80$autoload['config'] = array();
81
82
admind48ef1c2006-09-21 06:22:05 +000083/*
84| -------------------------------------------------------------------
85| Auto-load Core Libraries
86| -------------------------------------------------------------------
87|
adminabe14822006-09-22 00:14:38 +000088| DEPRECATED: Use $autoload['libraries'] above instead.
admind48ef1c2006-09-21 06:22:05 +000089|
90*/
91// $autoload['core'] = array();
92
adminb0dd10f2006-08-25 17:25:49 +000093
94?>