Route.php
4 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
namespace Phalcon\Mvc\Router {
/**
* Phalcon\Mvc\Router\Route
*
* This class represents every route added to the router
*/
class Route implements \Phalcon\Mvc\Router\RouteInterface {
protected $_pattern;
protected $_compiledPattern;
protected $_paths;
protected $_methods;
protected $_hostname;
protected $_converters;
protected $_id;
protected $_name;
protected $_beforeMatch;
protected static $_uniqueId;
/**
* \Phalcon\Mvc\Router\Route constructor
*
* @param string $pattern
* @param array $paths
* @param array|string $httpMethods
*/
public function __construct($pattern, $paths=null, $httpMethods=null){ }
/**
* Replaces placeholders from pattern returning a valid PCRE regular expression
*
* @param string $pattern
* @return string
*/
public function compilePattern($pattern){ }
/**
* Set one or more HTTP methods that constraint the matching of the route
*
*<code>
* $route->via('GET');
* $route->via(array('GET', 'POST'));
*</code>
*
* @param string|array $httpMethods
* @return \Phalcon\Mvc\Router\Route
*/
public function via($httpMethods){ }
/**
* Reconfigure the route adding a new pattern and a set of paths
*
* @param string $pattern
* @param array $paths
*/
public function reConfigure($pattern, $paths=null){ }
/**
* Returns the route's name
*
* @return string
*/
public function getName(){ }
/**
* Sets the route's name
*
*<code>
* $router->add('/about', array(
* 'controller' => 'about'
* ))->setName('about');
*</code>
*
* @param string $name
* @return \Phalcon\Mvc\Router\Route
*/
public function setName($name){ }
/**
* Sets a callback that is called if the route is matched.
* The developer can implement any arbitrary conditions here
* If the callback returns false the route is treaded as not matched
*
* @param callback $callback
* @return \Phalcon\Mvc\Router\Route
*/
public function beforeMatch($callback){ }
/**
* Returns the 'before match' callback if any
*
* @return mixed
*/
public function getBeforeMatch(){ }
/**
* Returns the route's id
*
* @return string
*/
public function getRouteId(){ }
/**
* Returns the route's pattern
*
* @return string
*/
public function getPattern(){ }
/**
* Returns the route's compiled pattern
*
* @return string
*/
public function getCompiledPattern(){ }
/**
* Returns the paths
*
* @return array
*/
public function getPaths(){ }
/**
* Returns the paths using positions as keys and names as values
*
* @return array
*/
public function getReversedPaths(){ }
/**
* Sets a set of HTTP methods that constraint the matching of the route (alias of via)
*
*<code>
* $route->setHttpMethods('GET');
* $route->setHttpMethods(array('GET', 'POST'));
*</code>
*
* @param string|array $httpMethods
* @return \Phalcon\Mvc\Router\Route
*/
public function setHttpMethods($httpMethods){ }
/**
* Returns the HTTP methods that constraint matching the route
*
* @return string|array
*/
public function getHttpMethods(){ }
/**
* Sets a hostname restriction to the route
*
*<code>
* $route->setHostname('localhost');
*</code>
*
* @param string|array $httpMethods
* @return \Phalcon\Mvc\Router\Route
*/
public function setHostname($hostname){ }
/**
* Returns the hostname restriction if any
*
* @return string
*/
public function getHostname(){ }
/**
* Adds a converter to perform an additional transformation for certain parameter
*
* @param string $name
* @param callable $converter
* @return \Phalcon\Mvc\Router\Route
*/
public function convert($name, $converter){ }
/**
* Returns the router converter
*
* @return array
*/
public function getConverters(){ }
/**
* Resets the internal route id generator
*/
public static function reset(){ }
}
}