1
+ <?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
+ | 5. Custom config files
25
+ |
26
+ */
27
+
28
+ /*
29
+ | -------------------------------------------------------------------
30
+ | Auto-load Libraries
31
+ | -------------------------------------------------------------------
32
+ | These are the classes located in the system/libraries folder
33
+ | or in your system/application/libraries folder.
34
+ |
35
+ | Prototype:
36
+ |
37
+ | $autoload['libraries'] = array('database', 'session', 'xmlrpc');
38
+ */
39
+
40
+ $ autoload ['libraries ' ] = array ('database ' , 'site_sentry ' , 'session ' );
41
+
42
+ /*
43
+ | -------------------------------------------------------------------
44
+ | Auto-load Helper Files
45
+ | -------------------------------------------------------------------
46
+ | Prototype:
47
+ |
48
+ | $autoload['helper'] = array('url', 'file');
49
+ */
50
+
51
+ $ autoload ['helper ' ] = array ('url ' , 'form ' );
52
+
53
+
54
+ /*
55
+ | -------------------------------------------------------------------
56
+ | Auto-load Plugins
57
+ | -------------------------------------------------------------------
58
+ | Prototype:
59
+ |
60
+ | $autoload['plugin'] = array('captcha', 'js_calendar');
61
+ */
62
+
63
+ $ autoload ['plugin ' ] = array ();
64
+
65
+
66
+ /*
67
+ | -------------------------------------------------------------------
68
+ | Auto-load Config files
69
+ | -------------------------------------------------------------------
70
+ | Prototype:
71
+ |
72
+ | $autoload['config'] = array('config1', 'config2');
73
+ |
74
+ | NOTE: This item is intended for use ONLY if you have created custom
75
+ | config files. Otherwise, leave it blank.
76
+ |
77
+ */
78
+
79
+ $ autoload ['config ' ] = array ();
80
+
81
+
82
+ /*
83
+ | -------------------------------------------------------------------
84
+ | Auto-load Language files
85
+ | -------------------------------------------------------------------
86
+ | Prototype:
87
+ |
88
+ | $autoload['language'] = array('lang1', 'lang2');
89
+ |
90
+ | NOTE: Do not include the "_lang" part of your file. For example
91
+ | "codeigniter_lang.php" would be referenced as array('codeigniter');
92
+ |
93
+ */
94
+
95
+ $ autoload ['language ' ] = array ('bamboo ' );
96
+ //$autoload['language'] = array();
97
+
98
+ /*
99
+ | -------------------------------------------------------------------
100
+ | Auto-load Core Libraries
101
+ | -------------------------------------------------------------------
102
+ |
103
+ | DEPRECATED: Use $autoload['libraries'] above instead.
104
+ |
105
+ */
106
+ // $autoload['core'] = array();
107
+
108
+ $ autoload ['model ' ] = array ('settings_model ' );
109
+
110
+
111
+
112
+ /* End of file autoload.php */
113
+ /* Location: ./system/application/config/autoload.php */
0 commit comments