Compiler.php
8.88 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
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
<?php
namespace Phalcon\Mvc\View\Engine\Volt {
/**
* Phalcon\Mvc\View\Engine\Volt\Compiler
*
* This class reads and compiles Volt templates into PHP plain code
*
*<code>
* $compiler = new \Phalcon\Mvc\View\Engine\Volt\Compiler();
*
* $compiler->compile('views/partials/header.volt');
*
* require $compiler->getCompiledTemplatePath();
*</code>
*/
class Compiler implements \Phalcon\DI\InjectionAwareInterface {
protected $_dependencyInjector;
protected $_view;
protected $_options;
protected $_arrayHelpers;
protected $_level;
protected $_foreachLevel;
protected $_blockLevel;
protected $_exprLevel;
protected $_extended;
protected $_autoescape;
protected $_extendedBlocks;
protected $_currentBlock;
protected $_blocks;
protected $_forElsePointers;
protected $_loopPointers;
protected $_extensions;
protected $_functions;
protected $_filters;
protected $_macros;
protected $_prefix;
protected $_currentPath;
protected $_compiledTemplatePath;
/**
* \Phalcon\Mvc\View\Engine\Volt\Compiler
*
* @param \Phalcon\Mvc\ViewInterface $view
*/
public function __construct($view=null){ }
/**
* Sets the dependency injector
*
* @param \Phalcon\DiInterface $dependencyInjector
*/
public function setDI($dependencyInjector){ }
/**
* Returns the internal dependency injector
*
* @return \Phalcon\DiInterface
*/
public function getDI(){ }
/**
* Sets the compiler options
*
* @param array $options
*/
public function setOptions($options){ }
/**
* Sets a single compiler option
*
* @param string $option
* @param string $value
*/
public function setOption($option, $value){ }
/**
* Returns a compiler's option
*
* @param string $option
* @return string
*/
public function getOption($option){ }
/**
* Returns the compiler options
*
* @return array
*/
public function getOptions(){ }
/**
* Fires an event to registered extensions
*
* @param string $name
* @param array $arguments
* @return mixed
*/
public function fireExtensionEvent($name, $arguments=null){ }
/**
* Registers a Volt's extension
*
* @param object $extension
* @return \Phalcon\Mvc\View\Engine\Volt\Compiler
*/
public function addExtension($extension){ }
/**
* Returns the list of extensions registered in Volt
*
* @return array
*/
public function getExtensions(){ }
/**
* Register a new function in the compiler
*
* @param string $name
* @param Closure|string $definition
* @return \Phalcon\Mvc\View\Engine\Volt\Compiler
*/
public function addFunction($name, $definition){ }
/**
* Register the user registered functions
*
* @return array
*/
public function getFunctions(){ }
/**
* Register a new filter in the compiler
*
* @param string $name
* @param Closure|string $definition
* @return \Phalcon\Mvc\View\Engine\Volt\Compiler
*/
public function addFilter($name, $definition){ }
/**
* Register the user registered filters
*
* @return array
*/
public function getFilters(){ }
/**
* Set a unique prefix to be used as prefix for compiled variables
*
* @param string $prefix
* @return \Phalcon\Mvc\View\Engine\Volt\Compiler
*/
public function setUniquePrefix($prefix){ }
/**
* Return a unique prefix to be used as prefix for compiled variables and contexts
*
* @return string
*/
public function getUniquePrefix(){ }
/**
* Resolves attribute reading
*
* @param array $expr
* @return string
*/
public function attributeReader($expr){ }
/**
* Resolves function intermediate code into PHP function calls
*
* @param array $expr
* @return string
*/
public function functionCall($expr){ }
/**
* Resolves filter intermediate code into a valid PHP expression
*
* @param array $test
* @param string $left
* @return string
*/
public function resolveTest($test, $left){ }
/**
* Resolves filter intermediate code into PHP function calls
*
* @param array $filter
* @param string $left
* @return string
*/
protected function resolveFilter(){ }
/**
* Resolves an expression node in an AST volt tree
*
* @param array $expr
* @return string
*/
public function expression($expr){ }
/**
* Compiles a block of statements
*
* @param array $statements
* @return string|array
*/
protected function _statementListOrExtends(){ }
/**
* Compiles a 'foreach' intermediate code representation into plain PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileForeach($statement, $extendsMode=null){ }
/**
* Generates a 'forelse' PHP code
*
* @return string
*/
public function compileForElse(){ }
/**
* Compiles a 'if' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileIf($statement, $extendsMode=null){ }
/**
* Compiles a 'elseif' statement returning PHP code
*
* @param array $statement
* @return string
*/
public function compileElseIf($statement){ }
/**
* Compiles a 'cache' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileCache($statement, $extendsMode=null){ }
/**
* Compiles a '{{' '}}' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileEcho($statement){ }
/**
* Compiles a 'include' statement returning PHP code
*
* @param array $statement
* @return string
*/
public function compileInclude($statement){ }
/**
* Compiles a 'set' statement returning PHP code
*
* @param array $statement
* @return string
*/
public function compileSet($statement){ }
/**
* Compiles a 'do' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileDo($statement){ }
/**
* Compiles a 'return' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileReturn($statement){ }
/**
* Compiles a 'autoescape' statement returning PHP code
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileAutoEscape($statement, $extendsMode){ }
/**
* Compiles macros
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileMacro($statement, $extendsMode){ }
/**
* Compiles calls to macros
*
* @param array $statement
* @param boolean $extendsMode
* @return string
*/
public function compileCall(){ }
/**
* Traverses a statement list compiling each of its nodes
*
* @param array $statement
* @return string
*/
protected function _statementList(){ }
/**
* Compiles a Volt source code returning a PHP plain version
*
* @param string $viewCode
* @param boolean $extendsMode
* @return string
*/
protected function _compileSource(){ }
/**
* Compiles a template into a string
*
*<code>
* echo $compiler->compileString('{{ "hello world" }}');
*</code>
*
* @param string $viewCode
* @param boolean $extendsMode
* @return string
*/
public function compileString($viewCode, $extendsMode=null){ }
/**
* Compiles a template into a file forcing the destination path
*
*<code>
* $compiler->compile('views/layouts/main.volt', 'views/layouts/main.volt.php');
*</code>
*
* @param string $path
* @param string $compiledPath
* @param boolean $extendsMode
* @return string|array
*/
public function compileFile($path, $compiledPath, $extendsMode=null){ }
/**
* Compiles a template into a file applying the compiler options
* This method does not return the compiled path if the template was not compiled
*
*<code>
* $compiler->compile('views/layouts/main.volt');
* require $compiler->getCompiledTemplatePath();
*</code>
*
* @param string $templatePath
* @param boolean $extendsMode
* @return string|array
*/
public function compile($templatePath, $extendsMode=null){ }
/**
* Returns the path that is currently being compiled
*
* @return string
*/
public function getTemplatePath(){ }
/**
* Returns the path to the last compiled template
*
* @return string
*/
public function getCompiledTemplatePath(){ }
/**
* Parses a Volt template returning its intermediate representation
*
*<code>
* print_r($compiler->parse('{{ 3 + 2 }}'));
*</code>
*
* @param string $viewCode
* @return array
*/
public function parse($viewCode){ }
}
}