forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTag.php
296 lines (240 loc) · 6.84 KB
/
Tag.php
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?php
namespace Phalcon\Test\Proxy;
use Phalcon\Tag as PhTag;
use Phalcon\DiInterface;
/**
* \Phalcon\Test\Proxy\Tag
* Tag proxy class for \Phalcon\Tag
*
* @copyright (c) 2011-2016 Phalcon Team
* @link http://www.phalconphp.com
* @author Andres Gutierrez <andres@phalconphp.com>
* @author Nikolaos Dimopoulos <nikos@phalconphp.com>
* @package Phalcon\Test\Proxy
*
* The contents of this file are subject to the New BSD License that is
* bundled with this package in the file docs/LICENSE.txt
*
* If you did not receive a copy of the license and are unable to obtain it
* through the world-wide-web, please send an email to license@phalconphp.com
* so that we can send you a copy immediately.
*/
class Tag extends PhTag
{
public static function getEscaper(array $params)
{
return parent::getEscaper($params);
}
public static function renderAttributes($code, array $attributes)
{
return parent::renderAttributes($code, $attributes);
}
public static function setDI(DiInterface $di)
{
parent::setDI($di);
}
public static function getDI()
{
return parent::getDI();
}
public static function getUrlService()
{
return parent::getUrlService();
}
public static function getEscaperService()
{
return parent::getEscaperService();
}
public static function setAutoescape($autoescape)
{
parent::setAutoescape($autoescape);
}
public static function setDefault($id, $value)
{
parent::setDefault($id, $value);
}
public static function setDefaults(array $values, $merge = false)
{
parent::setDefaults($values, $merge);
}
public static function displayTo($id, $value)
{
parent::displayTo($id, $value);
}
public static function hasValue($name)
{
return parent::hasValue($name);
}
public static function getValue($name, $params = null)
{
return parent::getValue($name, $params);
}
public static function resetInput()
{
parent::resetInput();
}
public static function linkTo($parameters, $text = null, $local = true)
{
return parent::linkTo($parameters, $text, $local);
}
public static function colorField($parameters)
{
return parent::colorField($parameters);
}
public static function textField($parameters)
{
return parent::textField($parameters);
}
public static function numericField($parameters)
{
return parent::numericField($parameters);
}
public static function rangeField($parameters)
{
return parent::rangeField($parameters);
}
public static function emailField($parameters)
{
return parent::emailField($parameters);
}
public static function dateField($parameters)
{
return parent::dateField($parameters);
}
public static function dateTimeField($parameters)
{
return parent::dateTimeField($parameters);
}
public static function dateTimeLocalField($parameters)
{
return parent::dateTimeLocalField($parameters);
}
public static function monthField($parameters)
{
return parent::monthField($parameters);
}
public static function timeField($parameters)
{
return parent::timeField($parameters);
}
public static function weekField($parameters)
{
return parent::weekField($parameters);
}
public static function passwordField($parameters)
{
return parent::passwordField($parameters);
}
public static function hiddenField($parameters)
{
return parent::hiddenField($parameters);
}
public static function fileField($parameters)
{
return parent::fileField($parameters);
}
public static function searchField($parameters)
{
return parent::searchField($parameters);
}
public static function telField($parameters)
{
return parent::telField($parameters);
}
public static function urlField($parameters)
{
return parent::urlField($parameters);
}
public static function checkField($parameters)
{
return parent::checkField($parameters);
}
public static function radioField($parameters)
{
return parent::radioField($parameters);
}
public static function imageInput($parameters)
{
return parent::imageInput($parameters);
}
public static function submitButton($parameters)
{
return parent::submitButton($parameters);
}
public static function selectStatic($parameters, $data = null)
{
return parent::selectStatic($parameters, $data);
}
public static function select($parameters, $data = null)
{
return parent::select($parameters, $data);
}
public static function textArea($parameters)
{
return parent::textArea($parameters);
}
public static function form($parameters)
{
return parent::form($parameters);
}
public static function endForm()
{
return parent::endForm();
}
public static function setTitle($title)
{
parent::setTitle($title);
}
public static function setTitleSeparator($titleSeparator)
{
parent::setTitleSeparator($titleSeparator);
}
public static function appendTitle($title)
{
parent::appendTitle($title);
}
public static function prependTitle($title)
{
parent::prependTitle($title);
}
public static function getTitle($tags = true)
{
return parent::getTitle($tags);
}
public static function getTitleSeparator()
{
return parent::getTitleSeparator();
}
public static function stylesheetLink($parameters = null, $local = true)
{
return parent::stylesheetLink($parameters, $local);
}
public static function javascriptInclude($parameters = null, $local = true)
{
return parent::javascriptInclude($parameters, $local);
}
public static function image($parameters = null, $local = true)
{
return parent::image($parameters, $local);
}
public static function friendlyTitle($text, $separator = "-", $lowercase = true, $replace = null)
{
return parent::friendlyTitle($text, $separator, $lowercase, $replace);
}
public static function setDocType($docType)
{
parent::setDocType($docType);
}
public static function getDocType()
{
return parent::getDocType();
}
public static function tagHtml($tagName, $parameters = null, $selfClose = false, $onlyStart = false, $useEol = false)
{
return parent::tagHtml($tagName, $parameters, $selfClose, $onlyStart, $useEol);
}
public static function tagHtmlClose($tagName, $useEol = false)
{
return parent::tagHtmlClose($tagName, $useEol);
}
}