Loader.php
3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
namespace Phalcon {
/**
* Phalcon\Loader
*
* This component helps to load your project classes automatically based on some conventions
*
*<code>
* //Creates the autoloader
* $loader = new Phalcon\Loader();
*
* //Register some namespaces
* $loader->registerNamespaces(array(
* 'Example\Base' => 'vendor/example/base/',
* 'Example\Adapter' => 'vendor/example/adapter/',
* 'Example' => 'vendor/example/'
* ));
*
* //register autoloader
* $loader->register();
*
* //Requiring this class will automatically include file vendor/example/adapter/Some.php
* $adapter = Example\Adapter\Some();
*</code>
*/
class Loader implements \Phalcon\Events\EventsAwareInterface {
protected $_eventsManager;
protected $_foundPath;
protected $_checkedPath;
protected $_prefixes;
protected $_classes;
protected $_extensions;
protected $_namespaces;
protected $_directories;
protected $_registered;
/**
* \Phalcon\Loader constructor
*/
public function __construct(){ }
/**
* Sets the events manager
*
* @param \Phalcon\Events\ManagerInterface $eventsManager
*/
public function setEventsManager($eventsManager){ }
/**
* Returns the internal event manager
*
* @return \Phalcon\Events\ManagerInterface
*/
public function getEventsManager(){ }
/**
* Sets an array of extensions that the loader must try in each attempt to locate the file
*
* @param array $extensions
* @param boolean $merge
* @return \Phalcon\Loader
*/
public function setExtensions($extensions){ }
/**
* Return file extensions registered in the loader
*
* @return boolean
*/
public function getExtensions(){ }
/**
* Register namespaces and their related directories
*
* @param array $namespaces
* @param boolean $merge
* @return \Phalcon\Loader
*/
public function registerNamespaces($namespaces, $merge=null){ }
/**
* Return current namespaces registered in the autoloader
*
* @return array
*/
public function getNamespaces(){ }
/**
* Register directories on which "not found" classes could be found
*
* @param array $prefixes
* @param boolean $merge
* @return \Phalcon\Loader
*/
public function registerPrefixes($prefixes, $merge=null){ }
/**
* Return current prefixes registered in the autoloader
*
* @param array
*/
public function getPrefixes(){ }
/**
* Register directories on which "not found" classes could be found
*
* @param array $directories
* @param boolean $merge
* @return \Phalcon\Loader
*/
public function registerDirs($directories, $merge=null){ }
/**
* Return current directories registered in the autoloader
*
* @param array
*/
public function getDirs(){ }
/**
* Register classes and their locations
*
* @param array $classes
* @param boolean $merge
* @return \Phalcon\Loader
*/
public function registerClasses($classes, $merge=null){ }
/**
* Return the current class-map registered in the autoloader
*
* @param array
*/
public function getClasses(){ }
/**
* Register the autoload method
*
* @return \Phalcon\Loader
*/
public function register(){ }
/**
* Unregister the autoload method
*
* @return \Phalcon\Loader
*/
public function unregister(){ }
/**
* Makes the work of autoload registered classes
*
* @param string $className
* @return boolean
*/
public function autoLoad($className){ }
/**
* Get the path when a class was found
*
* @return string
*/
public function getFoundPath(){ }
/**
* Get the path the loader is checking for a path
*
* @return string
*/
public function getCheckedPath(){ }
}
}