mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Smarty Internal Plugin Compile Modifier
 | 
						|
 * 
 | 
						|
 * Compiles code for modifier execution
 | 
						|
 * 
 | 
						|
 * @package Smarty
 | 
						|
 * @subpackage Compiler
 | 
						|
 * @author Uwe Tews 
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Smarty Internal Plugin Compile Modifier Class
 | 
						|
 */
 | 
						|
class Smarty_Internal_Compile_Private_Modifier extends Smarty_Internal_CompileBase {
 | 
						|
    /**
 | 
						|
     * Compiles code for modifier execution
 | 
						|
     * 
 | 
						|
     * @param array $args array with attributes from parser
 | 
						|
     * @param object $compiler compiler object
 | 
						|
     * @param array $parameter array with compilation parameter
 | 
						|
     * @return string compiled code
 | 
						|
     */
 | 
						|
    public function compile($args, $compiler, $parameter)
 | 
						|
    {
 | 
						|
        $this->compiler = $compiler;
 | 
						|
        $this->smarty = $this->compiler->smarty;
 | 
						|
        // check and get attributes
 | 
						|
        $_attr = $this->_get_attributes($args);
 | 
						|
        $output = $parameter['value']; 
 | 
						|
        // loop over list of modifiers
 | 
						|
        foreach ($parameter['modifierlist'] as $single_modifier) {
 | 
						|
            $modifier = $single_modifier[0];
 | 
						|
	   $single_modifier[0] = $output;
 | 
						|
            $params = implode(',', $single_modifier); 
 | 
						|
            // check for registered modifier
 | 
						|
            if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier])) {
 | 
						|
                $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier][0];
 | 
						|
                if (!is_array($function)) {
 | 
						|
                    $output = "{$function}({$params})";
 | 
						|
                } else {
 | 
						|
                    if (is_object($function[0])) {
 | 
						|
                        $output = '$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][\'' . $modifier . '\'][0][0]->' . $function[1] . '(' . $params . ')';
 | 
						|
                    } else {
 | 
						|
                        $output = $function[0] . '::' . $function[1] . '(' . $params . ')';
 | 
						|
                    } 
 | 
						|
                } 
 | 
						|
                // check for plugin modifiercompiler
 | 
						|
            } else if ($compiler->smarty->loadPlugin('smarty_modifiercompiler_' . $modifier)) {
 | 
						|
                $plugin = 'smarty_modifiercompiler_' . $modifier;
 | 
						|
                $output = $plugin($single_modifier, $compiler); 
 | 
						|
                // check for plugin modifier
 | 
						|
            } else if ($function = $this->compiler->getPlugin($modifier, Smarty::PLUGIN_MODIFIER)) {
 | 
						|
                $output = "{$function}({$params})"; 
 | 
						|
                // check if trusted PHP function
 | 
						|
            } else if (is_callable($modifier)) {
 | 
						|
                // check if modifier allowed
 | 
						|
                if (!is_object($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedModifier($modifier, $this->compiler)) {
 | 
						|
                    $output = "{$modifier}({$params})";
 | 
						|
                } 
 | 
						|
            } else {
 | 
						|
                $this->compiler->trigger_template_error ("unknown modifier \"" . $modifier . "\"", $this->compiler->lex->taglineno);
 | 
						|
            } 
 | 
						|
        } 
 | 
						|
        return $output;
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |