From 51609351f2c4b5082b7e6f0744cd3811c325303f Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 11 Oct 2016 14:01:29 +0200 Subject: * initial template --- .../sysplugins/smarty_internal_compile_append.php | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 lib/smarty/sysplugins/smarty_internal_compile_append.php (limited to 'lib/smarty/sysplugins/smarty_internal_compile_append.php') diff --git a/lib/smarty/sysplugins/smarty_internal_compile_append.php b/lib/smarty/sysplugins/smarty_internal_compile_append.php new file mode 100644 index 0000000..f6036e8 --- /dev/null +++ b/lib/smarty/sysplugins/smarty_internal_compile_append.php @@ -0,0 +1,53 @@ +required_attributes = array('var', 'value'); + $this->shorttag_order = array('var', 'value'); + $this->optional_attributes = array('scope', 'index'); + // check and get attributes + $_attr = $this->getAttributes($compiler, $args); + // map to compile assign attributes + if (isset($_attr['index'])) { + $_params['smarty_internal_index'] = '[' . $_attr['index'] . ']'; + unset($_attr['index']); + } else { + $_params['smarty_internal_index'] = '[]'; + } + $_new_attr = array(); + foreach ($_attr as $key => $value) { + $_new_attr[] = array($key => $value); + } + // call compile assign + return parent::compile($_new_attr, $compiler, $_params); + } + +} + +?> \ No newline at end of file -- cgit v1.2.3