gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

commit 9848ed70af31807ad31a80285bd234db5c9ffc12
parent 1e9d22f859c1a4c2d0115a4c5bb33be169087108
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Sat, 31 Oct 2015 17:43:33 +0100

Create smarty_internal_parsetree.php
Diffstat:
Alibs/smarty/sysplugins/smarty_internal_parsetree.php | 49+++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+), 0 deletions(-)

diff --git a/libs/smarty/sysplugins/smarty_internal_parsetree.php b/libs/smarty/sysplugins/smarty_internal_parsetree.php @@ -0,0 +1,49 @@ +<?php +/** + * Smarty Internal Plugin Templateparser Parsetrees + * These are classes to build parsetrees in the template parser + * + * @package Smarty + * @subpackage Compiler + * @author Thue Kristensen + * @author Uwe Tews + */ + +/** + * @package Smarty + * @subpackage Compiler + * @ignore + */ +abstract class Smarty_Internal_ParseTree +{ + + /** + * Parser object + * + * @var object + */ + public $parser; + + /** + * Buffer content + * + * @var mixed + */ + public $data; + + /** + * Subtree array + * + * @var array + */ + public $subtrees = array(); + + /** + * Return buffer + * + * @return string buffer content + */ + abstract public function to_smarty_php(); +} + +