Take two:
[www-register-wizard.git] / application / config / autoload.php
1 <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');\r
2 /*\r
3 | -------------------------------------------------------------------\r
4 | AUTO-LOADER\r
5 | -------------------------------------------------------------------\r
6 | This file specifies which systems should be loaded by default.\r
7 |\r
8 | In order to keep the framework as light-weight as possible only the\r
9 | absolute minimal resources are loaded by default. For example,\r
10 | the database is not connected to automatically since no assumption\r
11 | is made regarding whether you intend to use it.  This file lets\r
12 | you globally define which systems you would like loaded with every\r
13 | request.\r
14 |\r
15 | -------------------------------------------------------------------\r
16 | Instructions\r
17 | -------------------------------------------------------------------\r
18 |\r
19 | These are the things you can load automatically:\r
20 |\r
21 | 1. Libraries\r
22 | 2. Helper files\r
23 | 3. Plugins\r
24 | 4. Custom config files\r
25 | 5. Language files\r
26 | 6. Models\r
27 |\r
28 */\r
29 \r
30 /*\r
31 | -------------------------------------------------------------------\r
32 |  Auto-load Libraries\r
33 | -------------------------------------------------------------------\r
34 | These are the classes located in the system/libraries folder\r
35 | or in your system/application/libraries folder.\r
36 |\r
37 | Prototype:\r
38 |\r
39 |       $autoload['libraries'] = array('database', 'session', 'xmlrpc');\r
40 */\r
41 \r
42 $autoload['libraries'] = array();\r
43 \r
44 \r
45 /*\r
46 | -------------------------------------------------------------------\r
47 |  Auto-load Helper Files\r
48 | -------------------------------------------------------------------\r
49 | Prototype:\r
50 |\r
51 |       $autoload['helper'] = array('url', 'file');\r
52 */\r
53 \r
54 $autoload['helper'] = array();\r
55 \r
56 \r
57 /*\r
58 | -------------------------------------------------------------------\r
59 |  Auto-load Plugins\r
60 | -------------------------------------------------------------------\r
61 | Prototype:\r
62 |\r
63 |       $autoload['plugin'] = array('captcha', 'js_calendar');\r
64 */\r
65 \r
66 $autoload['plugin'] = array();\r
67 \r
68 \r
69 /*\r
70 | -------------------------------------------------------------------\r
71 |  Auto-load Config files\r
72 | -------------------------------------------------------------------\r
73 | Prototype:\r
74 |\r
75 |       $autoload['config'] = array('config1', 'config2');\r
76 |\r
77 | NOTE: This item is intended for use ONLY if you have created custom\r
78 | config files.  Otherwise, leave it blank.\r
79 |\r
80 */\r
81 \r
82 $autoload['config'] = array();\r
83 \r
84 \r
85 /*\r
86 | -------------------------------------------------------------------\r
87 |  Auto-load Language files\r
88 | -------------------------------------------------------------------\r
89 | Prototype:\r
90 |\r
91 |       $autoload['language'] = array('lang1', 'lang2');\r
92 |\r
93 | NOTE: Do not include the "_lang" part of your file.  For example \r
94 | "codeigniter_lang.php" would be referenced as array('codeigniter');\r
95 |\r
96 */\r
97 \r
98 $autoload['language'] = array();\r
99 \r
100 \r
101 /*\r
102 | -------------------------------------------------------------------\r
103 |  Auto-load Models\r
104 | -------------------------------------------------------------------\r
105 | Prototype:\r
106 |\r
107 |       $autoload['model'] = array('model1', 'model2');\r
108 |\r
109 */\r
110 \r
111 $autoload['model'] = array();\r
112 \r
113 \r
114 /*\r
115 | -------------------------------------------------------------------\r
116 |  Auto-load Core Libraries\r
117 | -------------------------------------------------------------------\r
118 |\r
119 | DEPRECATED:  Use $autoload['libraries'] above instead.\r
120 |\r
121 */\r
122 // $autoload['core'] = array();\r
123 \r
124 \r
125 \r
126 /* End of file autoload.php */\r
127 /* Location: ./system/application/config/autoload.php */