Code

Updated encoding for external files. Closes #1018.
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_internal_compile_private_registered_function.php
1 <?php
2 /**
3 * Smarty Internal Plugin Compile Registered Function
4
5 * Compiles code for the execution of a registered function
6
7 * @package Smarty
8 * @subpackage Compiler
9 * @author Uwe Tews 
10 */
11 /**
12 * Smarty Internal Plugin Compile Registered Function Class
13 */
14 class Smarty_Internal_Compile_Private_Registered_Function extends Smarty_Internal_CompileBase {
15     /**
16     * Compiles code for the execution of a registered function
17     * 
18     * @param array $args array with attributes from parser
19     * @param string $tag name of function
20     * @param object $compiler compiler object
21     * @return string compiled code
22     */
23     public function compile($args, $compiler, $tag)
24     {
25         $this->compiler = $compiler; 
26         // This tag does create output
27         $this->compiler->has_output = true;
29         $this->required_attributes = array();
30         $this->optional_attributes = array('_any'); 
31         // check and get attributes
32         $_attr = $this->_get_attributes($args); 
33         // not cachable?
34         $this->compiler->tag_nocache = !$compiler->smarty->registered_plugins['function'][$tag][1]; 
35         // convert attributes into parameter array string
36         $_paramsArray = array();
37         foreach ($_attr as $_key => $_value) {
38             if (is_int($_key)) {
39                 $_paramsArray[] = "$_key=>$_value";
40             } else {
41                 $_paramsArray[] = "'$_key'=>$_value";
42             } 
43         } 
44         $_params = 'array(' . implode(",", $_paramsArray) . ')'; 
45         // compile code
46         $output = '<?php echo call_user_func_array($_smarty_tpl->smarty->registered_plugins[\'function\'][\'' . $tag . '\'][0],array(' . $_params . ',$_smarty_tpl->smarty,$_smarty_tpl));?>';
47         return $output;
48     } 
49
51 ?>