Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Smarty/plugins/modifiercompiler.escape.php
Строк: 103
<?php
/**
 * Smarty plugin
 *
 * @package    Smarty
 * @subpackage PluginsModifierCompiler
 */
/**
 * Smarty escape modifier plugin
 * Type:     modifier
 * Name:     escape
 * Purpose:  escape string for output
 *
 * @link   http://www.smarty.net/docsv2/en/language.modifier.escape count_characters (Smarty online manual)
 * @author Rodney Rehm
 *
 * @param array                                $params parameters
 * @param Smarty_Internal_TemplateCompilerBase $compiler
 *
 * @return string with compiled code
 * @throws SmartyException
 */
function smarty_modifiercompiler_escape($paramsSmarty_Internal_TemplateCompilerBase $compiler)
{
    static 
$_double_encode null;
    static 
$is_loaded false;
    
$compiler->template->_checkPlugins(
        array(
            array(
                
'function' => 'smarty_literal_compiler_param',
                
'file'     => SMARTY_PLUGINS_DIR 'shared.literal_compiler_param.php'
            
)
        )
    );
    if (
$_double_encode === null) {
        
$_double_encode version_compare(PHP_VERSION'5.2.3''>=');
    }
    try {
        
$esc_type smarty_literal_compiler_param($params1'html');
        
$char_set smarty_literal_compiler_param($params2Smarty::$_CHARSET);
        
$double_encode smarty_literal_compiler_param($params3true);
        if (!
$char_set) {
            
$char_set Smarty::$_CHARSET;
        }
        switch (
$esc_type) {
            case 
'html':
                if (
$_double_encode) {
                    return 
'htmlspecialchars(' $params] . ', ENT_QUOTES, ' var_export($char_settrue) . ', ' .
                           
var_export($double_encodetrue) . ')';
                } elseif (
$double_encode) {
                    return 
'htmlspecialchars(' $params] . ', ENT_QUOTES, ' var_export($char_settrue) . ')';
                } else {
                    
// fall back to modifier.escape.php
                
}
            
// no break
            
case 'htmlall':
                if (
Smarty::$_MBSTRING) {
                    if (
$_double_encode) {
                        
// php >=5.2.3 - go native
                        
return 'mb_convert_encoding(htmlspecialchars(' $params] . ', ENT_QUOTES, ' .
                               
var_export($char_settrue) . ', ' var_export($double_encodetrue) .
                               
'), "HTML-ENTITIES", ' var_export($char_settrue) . ')';
                    } elseif (
$double_encode) {
                        
// php <5.2.3 - only handle double encoding
                        
return 'mb_convert_encoding(htmlspecialchars(' $params] . ', ENT_QUOTES, ' .
                               
var_export($char_settrue) . '), "HTML-ENTITIES", ' var_export($char_settrue) . ')';
                    } else {
                        
// fall back to modifier.escape.php
                    
}
                }
                
// no MBString fallback
                
if ($_double_encode) {
                    
// php >=5.2.3 - go native
                    
return 'htmlentities(' $params] . ', ENT_QUOTES, ' var_export($char_settrue) . ', ' .
                           
var_export($double_encodetrue) . ')';
                } elseif (
$double_encode) {
                    
// php <5.2.3 - only handle double encoding
                    
return 'htmlentities(' $params] . ', ENT_QUOTES, ' var_export($char_settrue) . ')';
                } else {
                    
// fall back to modifier.escape.php
                
}
            
// no break
            
case 'url':
                return 
'rawurlencode(' $params] . ')';
            case 
'urlpathinfo':
                return 
'str_replace("%2F", "/", rawurlencode(' $params] . '))';
            case 
'quotes':
                
// escape unescaped single quotes
                
return 'preg_replace("%(?<!\\\\)'%", "\'",' $params] . ')';
            case 
'javascript':
                
// escape quotes and backslashes, newlines, etc.
                
return 'strtr(' .
                       
$params] .
                       
', array("\\" => "\\\\", "'" => "\\'", """ => "\\"", "\r" => "\\r", "\n" => "\n", "</" => "</" ))';
        }
    } catch (
SmartyException $e) {
        
// pass through to regular plugin fallback
    
}
    
// could not optimize |escape call, so fallback to regular plugin
    
if ($compiler->template->caching && ($compiler->tag_nocache $compiler->nocache)) {
        
$compiler->required_plugins'nocache' ][ 'escape' ][ 'modifier' ][ 'file' ] =
            
SMARTY_PLUGINS_DIR 'modifier.escape.php';
        
$compiler->required_plugins'nocache' ][ 'escape' ][ 'modifier' ][ 'function' ] =
            
'smarty_modifier_escape';
    } else {
        
$compiler->required_plugins'compiled' ][ 'escape' ][ 'modifier' ][ 'file' ] =
            
SMARTY_PLUGINS_DIR 'modifier.escape.php';
        
$compiler->required_plugins'compiled' ][ 'escape' ][ 'modifier' ][ 'function' ] =
            
'smarty_modifier_escape';
    }
    return 
'smarty_modifier_escape(' join(', '$params) . ')';
}
Онлайн: 0
Реклама