blob: 4efe3be4195b4d53b7d1e4606dd72478f50b5239 [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
24| 4. Scripts
25| 5. Custom config files
26|
adminb0dd10f2006-08-25 17:25:49 +000027*/
28
29/*
30| -------------------------------------------------------------------
admind48ef1c2006-09-21 06:22:05 +000031| Auto-load Libraries
adminb0dd10f2006-08-25 17:25:49 +000032| -------------------------------------------------------------------
admind48ef1c2006-09-21 06:22:05 +000033| These are the classes located in the system/libraries folder
34| or in your system/application/libraries folder.
35|
adminb0dd10f2006-08-25 17:25:49 +000036| Prototype:
37|
admind48ef1c2006-09-21 06:22:05 +000038| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
adminb0dd10f2006-08-25 17:25:49 +000039*/
40
admind48ef1c2006-09-21 06:22:05 +000041$autoload['libraries'] = array();
adminb0dd10f2006-08-25 17:25:49 +000042
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 Scripts
71| -------------------------------------------------------------------
72| The term "scripts" refers to you own PHP scripts that you've
73| placed in the application/scripts/ folder
74|
75| Prototype:
76|
77| $autoload['script'] = array('my_script1', 'my_script2');
78*/
79
80$autoload['script'] = array();
81
82
83/*
84| -------------------------------------------------------------------
85| Auto-load Config files
86| -------------------------------------------------------------------
87| Prototype:
88|
89| $autoload['config'] = array('config1', 'config2');
90|
91| NOTE: This item is intended for use ONLY if you have created custom
92| config files. Otherwise, leave it blank.
93|
94*/
95
96$autoload['config'] = array();
97
98
admind48ef1c2006-09-21 06:22:05 +000099/*
100| -------------------------------------------------------------------
101| Auto-load Core Libraries
102| -------------------------------------------------------------------
103|
104| DEPRECATED: Use $autoload $autoload['libraries'] instead.
105|
106*/
107// $autoload['core'] = array();
108
adminb0dd10f2006-08-25 17:25:49 +0000109
110?>