From fd626022ec02ef47b9142bba08180502babbd0ca Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 3 Jul 2012 22:23:08 -0700 Subject: add smarty engine, remove some obsolete zot1 stuff --- .../sysplugins/smarty_internal_compile_append.php | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 library/Smarty/libs/sysplugins/smarty_internal_compile_append.php (limited to 'library/Smarty/libs/sysplugins/smarty_internal_compile_append.php') diff --git a/library/Smarty/libs/sysplugins/smarty_internal_compile_append.php b/library/Smarty/libs/sysplugins/smarty_internal_compile_append.php new file mode 100644 index 000000000..f6036e883 --- /dev/null +++ b/library/Smarty/libs/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