blob: e1140c15e9800667df9350e616500c2a4a2433ba (
plain)
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
|
<?php
namespace Smarty\ParseTree;
/**
* Smarty Internal Plugin Templateparser ParseTree
* These are classes to build parsetree in the template parser
*
* @author Thue Kristensen
* @author Uwe Tews
*/
/**
* @ignore
*/
abstract class Base
{
/**
* Buffer content
*
* @var mixed
*/
public $data;
/**
* Subtree array
*
* @var array
*/
public $subtrees = array();
/**
* Return buffer
*
* @param \Smarty\Parser\TemplateParser $parser
*
* @return string buffer content
*/
abstract public function to_smarty_php(\Smarty\Parser\TemplateParser $parser);
}
|