/trunk/classes/internalcompilecontinue.php |
---|
New file |
0,0 → 1,76 |
<?php |
/** |
* Smarty Internal Plugin Compile Continue |
* |
* Compiles the {continue} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Continue Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileContinue extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('levels'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('levels'); |
/** |
* Compiles code for the {continue} tag |
* |
* @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) |
{ |
static $_is_loopy = array('for' => true, 'foreach' => true, 'while' => true, 'section' => true); |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); |
} |
if (isset($_attr['levels'])) { |
if (!is_numeric($_attr['levels'])) { |
$compiler->trigger_template_error('level attribute must be a numeric constant', $compiler->lex->taglineno); |
} |
$_levels = $_attr['levels']; |
} else { |
$_levels = 1; |
} |
$level_count = $_levels; |
$stack_count = count($compiler->_tag_stack) - 1; |
while ($level_count > 0 && $stack_count >= 0) { |
if (isset($_is_loopy[$compiler->_tag_stack[$stack_count][0]])) { |
$level_count--; |
} |
$stack_count--; |
} |
if ($level_count != 0) { |
$compiler->trigger_template_error("cannot continue {$_levels} level(s)", $compiler->lex->taglineno); |
} |
return "<?php continue {$_levels}?>"; |
} |
} |
/trunk/classes/internalresourceeval.php |
---|
New file |
0,0 → 1,93 |
<?php |
/** |
* Smarty Internal Plugin Resource Eval |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Uwe Tews |
* @author Rodney Rehm |
*/ |
/** |
* Smarty Internal Plugin Resource Eval |
* |
* Implements the strings as resource for Smarty template |
* |
* {@internal unlike string-resources the compiled state of eval-resources is NOT saved for subsequent access}} |
* |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
class Plugin_Smarty_InternalResourceEval extends Plugin_Smarty_ResourceRecompiled |
{ |
/** |
* populate Source Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populate(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template=null) |
{ |
$source->uid = $source->filepath = sha1($source->name); |
$source->timestamp = false; |
$source->exists = true; |
} |
/** |
* Load template's source from $resource_name into current template object |
* |
* @uses decode() to decode base64 and urlencoded template_resources |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string template source |
*/ |
public function getContent(Plugin_Smarty_TemplateSource $source) |
{ |
return $this->decode($source->name); |
} |
/** |
* decode base64 and urlencode |
* |
* @param string $string template_resource to decode |
* @return string decoded template_resource |
*/ |
protected function decode($string) |
{ |
// decode if specified |
if (($pos = strpos($string, ':')) !== false) { |
if (!strncmp($string, 'base64', 6)) { |
return base64_decode(substr($string, 7)); |
} elseif (!strncmp($string, 'urlencode', 9)) { |
return urldecode(substr($string, 10)); |
} |
} |
return $string; |
} |
/** |
* modify resource_name according to resource handlers specifications |
* |
* @param Smarty $smarty Smarty instance |
* @param string $resource_name resource_name to make unique |
* @param boolean $is_config flag for config resource |
* @return string unique resource name |
*/ |
protected function buildUniqueResourceName(Plugin_Smarty_Smarty $smarty, $resource_name, $is_config = false) |
{ |
return get_class($this) . '#' .$this->decode($resource_name); |
} |
/** |
* Determine basename for compiled filename |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string resource's basename |
*/ |
protected function getBasename(Plugin_Smarty_TemplateSource $source) |
{ |
return ''; |
} |
} |
/trunk/classes/internalcompilesetfilterclose.php |
---|
New file |
0,0 → 1,35 |
<?php |
/** |
* Smarty Internal Plugin Compile Setfilterclose Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileSetfilterclose extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {/setfilter} tag |
* |
* This tag does not generate compiled output. It resets variable filter. |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
$_attr = $this->getAttributes($compiler, $args); |
// reset variable filter to previous state |
if (count($compiler->variable_filter_stack)) { |
$compiler->template->variable_filters = array_pop($compiler->variable_filter_stack); |
} else { |
$compiler->template->variable_filters = array(); |
} |
// this tag does not return compiled code |
$compiler->has_code = false; |
return true; |
} |
} |
/trunk/classes/exception.php |
---|
New file |
0,0 → 1,15 |
<?php |
/** |
* Smarty exception class |
* @package Smarty |
*/ |
class Plugin_Smarty_Exception extends Exception |
{ |
public static $escape = false; |
public function __toString() |
{ |
return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; |
} |
} |
/trunk/classes/internalcompileprivatemodifier.php |
---|
New file |
0,0 → 1,140 |
<?php |
/** |
* Smarty Internal Plugin Compile Modifier |
* |
* Compiles code for modifier execution |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Modifier Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompilePrivateModifier extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* 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) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $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 if we know already the type of modifier |
if (isset($compiler->known_modifier_type[$modifier])) { |
$modifier_types = array($compiler->known_modifier_type[$modifier]); |
} else { |
$modifier_types = array(1, 2, 3, 4, 5, 6); |
} |
foreach ($modifier_types as $type) { |
switch ($type) { |
case 1: |
// registered modifier |
if (isset($compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][$modifier])) { |
$function = $compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][$modifier][0]; |
if (!is_array($function)) { |
$output = "{$function}({$params})"; |
} else { |
if (is_object($function[0])) { |
$output = '$_smarty_tpl->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][\'' . $modifier . '\'][0][0]->' . $function[1] . '(' . $params . ')'; |
} else { |
$output = $function[0] . '::' . $function[1] . '(' . $params . ')'; |
} |
} |
$compiler->known_modifier_type[$modifier] = $type; |
break 2; |
} |
break; |
case 2: |
// registered modifier compiler |
if (isset($compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIERCOMPILER][$modifier][0])) { |
$output = call_user_func($compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIERCOMPILER][$modifier][0], $single_modifier, $compiler->smarty); |
$compiler->known_modifier_type[$modifier] = $type; |
break 2; |
} |
break; |
case 3: |
// modifiercompiler plugin |
if ($compiler->smarty->loadPlugin('smarty_modifiercompiler_' . $modifier)) { |
// check if modifier allowed |
if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedModifier($modifier, $compiler)) { |
$plugin = 'smarty_modifiercompiler_' . $modifier; |
$output = $plugin($single_modifier, $compiler); |
} |
$compiler->known_modifier_type[$modifier] = $type; |
break 2; |
} |
break; |
case 4: |
// modifier plugin |
if ($function = $compiler->getPlugin($modifier, Plugin_Smarty_Smarty::PLUGIN_MODIFIER)) { |
// check if modifier allowed |
if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedModifier($modifier, $compiler)) { |
$output = "{$function}({$params})"; |
} |
$compiler->known_modifier_type[$modifier] = $type; |
break 2; |
} |
break; |
case 5: |
// PHP function |
if (is_callable($modifier)) { |
// check if modifier allowed |
if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedPhpModifier($modifier, $compiler)) { |
$output = "{$modifier}({$params})"; |
} |
$compiler->known_modifier_type[$modifier] = $type; |
break 2; |
} |
break; |
case 6: |
// default plugin handler |
if (isset($compiler->default_handler_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][$modifier]) || (is_callable($compiler->smarty->default_plugin_handler_func) && $compiler->getPluginFromDefaultHandler($modifier, Plugin_Smarty_Smarty::PLUGIN_MODIFIER))) { |
$function = $compiler->default_handler_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][$modifier][0]; |
// check if modifier allowed |
if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedModifier($modifier, $compiler)) { |
if (!is_array($function)) { |
$output = "{$function}({$params})"; |
} else { |
if (is_object($function[0])) { |
$output = '$_smarty_tpl->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_MODIFIER][\'' . $modifier . '\'][0][0]->' . $function[1] . '(' . $params . ')'; |
} else { |
$output = $function[0] . '::' . $function[1] . '(' . $params . ')'; |
} |
} |
} |
if (isset($compiler->template->required_plugins['nocache'][$modifier][Plugin_Smarty_Smarty::PLUGIN_MODIFIER]['file']) || isset($compiler->template->required_plugins['compiled'][$modifier][Plugin_Smarty_Smarty::PLUGIN_MODIFIER]['file'])) { |
// was a plugin |
$compiler->known_modifier_type[$modifier] = 4; |
} else { |
$compiler->known_modifier_type[$modifier] = $type; |
} |
break 2; |
} |
} |
} |
if (!isset($compiler->known_modifier_type[$modifier])) { |
$compiler->trigger_template_error("unknown modifier \"" . $modifier . "\"", $compiler->lex->taglineno); |
} |
} |
return $output; |
} |
} |
/trunk/classes/internalcompilenocache.php |
---|
New file |
0,0 → 1,46 |
<?php |
/** |
* Smarty Internal Plugin Compile Nocache |
* |
* Compiles the {nocache} {/nocache} tags. |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Nocache Classv |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileNocache extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {nocache} tag |
* |
* This tag does not generate compiled output. It only sets a compiler flag. |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return bool |
*/ |
public function compile($args, $compiler) |
{ |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); |
} |
if ($compiler->template->caching) { |
// enter nocache mode |
$this->openTag($compiler, 'nocache', $compiler->nocache); |
$compiler->nocache = true; |
} |
// this tag does not return compiled code |
$compiler->has_code = false; |
return true; |
} |
} |
/trunk/classes/resourceuncompiled.php |
---|
New file |
0,0 → 1,42 |
<?php |
/** |
* Smarty Resource Plugin |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Rodney Rehm |
*/ |
/** |
* Smarty Resource Plugin |
* |
* Base implementation for resource plugins that don't use the compiler |
* |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
abstract class Plugin_Smarty_ResourceUncompiled extends Plugin_Smarty_Resource |
{ |
/** |
* Render and output the template (without using the compiler) |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @throws Plugin_Smarty_Exception on failure |
*/ |
abstract public function renderUncompiled(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template); |
/** |
* populate compiled object with compiled filepath |
* |
* @param Plugin_Smarty_TemplateCompiled $compiled compiled object |
* @param Plugin_Smarty_InternalTemplate $_template template object (is ignored) |
*/ |
public function populateCompiledFilepath(Plugin_Smarty_TemplateCompiled $compiled, Plugin_Smarty_InternalTemplate $_template) |
{ |
$compiled->filepath = false; |
$compiled->timestamp = false; |
$compiled->exists = false; |
} |
} |
/trunk/classes/internaltemplatelexer.php |
---|
New file |
0,0 → 1,1396 |
<?php |
/** |
* Smarty Internal Plugin Templatelexer |
* |
* This is the lexer to break the template source into tokens |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Templatelexer |
*/ |
class Plugin_Smarty_InternalTemplatelexer |
{ |
public $data; |
public $counter; |
public $token; |
public $value; |
public $node; |
public $line; |
public $taglineno; |
public $state = 1; |
private $heredoc_id_stack = Array(); |
public $yyTraceFILE; |
public $yyTracePrompt; |
public $state_name = array (1 => 'TEXT', 2 => 'SMARTY', 3 => 'LITERAL', 4 => 'DOUBLEQUOTEDSTRING', 5 => 'CHILDBODY'); |
public $smarty_token_names = array ( // Text for parser error messages |
'IDENTITY' => '===', |
'NONEIDENTITY' => '!==', |
'EQUALS' => '==', |
'NOTEQUALS' => '!=', |
'GREATEREQUAL' => '(>=,ge)', |
'LESSEQUAL' => '(<=,le)', |
'GREATERTHAN' => '(>,gt)', |
'LESSTHAN' => '(<,lt)', |
'MOD' => '(%,mod)', |
'NOT' => '(!,not)', |
'LAND' => '(&&,and)', |
'LOR' => '(||,or)', |
'LXOR' => 'xor', |
'OPENP' => '(', |
'CLOSEP' => ')', |
'OPENB' => '[', |
'CLOSEB' => ']', |
'PTR' => '->', |
'APTR' => '=>', |
'EQUAL' => '=', |
'NUMBER' => 'number', |
'UNIMATH' => '+" , "-', |
'MATH' => '*" , "/" , "%', |
'INCDEC' => '++" , "--', |
'SPACE' => ' ', |
'DOLLAR' => '$', |
'SEMICOLON' => ';', |
'COLON' => ':', |
'DOUBLECOLON' => '::', |
'AT' => '@', |
'HATCH' => '#', |
'QUOTE' => '"', |
'BACKTICK' => '`', |
'VERT' => '|', |
'DOT' => '.', |
'COMMA' => '","', |
'ANDSYM' => '"&"', |
'QMARK' => '"?"', |
'ID' => 'identifier', |
'TEXT' => 'text', |
'FAKEPHPSTARTTAG' => 'Fake PHP start tag', |
'PHPSTARTTAG' => 'PHP start tag', |
'PHPENDTAG' => 'PHP end tag', |
'LITERALSTART' => 'Literal start', |
'LITERALEND' => 'Literal end', |
'LDELSLASH' => 'closing tag', |
'COMMENT' => 'comment', |
'AS' => 'as', |
'TO' => 'to', |
); |
function __construct($data,$compiler) |
{ |
// $this->data = preg_replace("/(\r\n|\r|\n)/", "\n", $data); |
$this->data = $data; |
$this->counter = 0; |
$this->line = 1; |
$this->smarty = $compiler->smarty; |
$this->compiler = $compiler; |
$this->ldel = preg_quote($this->smarty->left_delimiter,'/'); |
$this->ldel_length = strlen($this->smarty->left_delimiter); |
$this->rdel = preg_quote($this->smarty->right_delimiter,'/'); |
$this->rdel_length = strlen($this->smarty->right_delimiter); |
$this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter; |
$this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter; |
$this->mbstring_overload = ini_get('mbstring.func_overload') & 2; |
} |
public function PrintTrace() |
{ |
$this->yyTraceFILE = fopen('php://output', 'w'); |
$this->yyTracePrompt = '<br>'; |
} |
private $_yy_state = 1; |
private $_yy_stack = array(); |
public function yylex() |
{ |
return $this->{'yylex' . $this->_yy_state}(); |
} |
public function yypushstate($state) |
{ |
if ($this->yyTraceFILE) { |
fprintf($this->yyTraceFILE, "%sState push %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); |
} |
array_push($this->_yy_stack, $this->_yy_state); |
$this->_yy_state = $state; |
if ($this->yyTraceFILE) { |
fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); |
} |
} |
public function yypopstate() |
{ |
if ($this->yyTraceFILE) { |
fprintf($this->yyTraceFILE, "%sState pop %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); |
} |
$this->_yy_state = array_pop($this->_yy_stack); |
if ($this->yyTraceFILE) { |
fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); |
} |
} |
public function yybegin($state) |
{ |
$this->_yy_state = $state; |
if ($this->yyTraceFILE) { |
fprintf($this->yyTraceFILE, "%sState set %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); |
} |
} |
public function yylex1() |
{ |
$tokenMap = array ( |
1 => 0, |
2 => 1, |
4 => 0, |
5 => 0, |
6 => 0, |
7 => 1, |
9 => 0, |
10 => 0, |
11 => 0, |
12 => 0, |
13 => 0, |
14 => 0, |
15 => 0, |
16 => 0, |
17 => 0, |
18 => 0, |
19 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(\\{\\})|\G(".$this->ldel."\\s*\\*([\S\s]*?)\\*\\s*".$this->rdel.")|\G(".$this->ldel."\\s*strip\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/strip\\s*".$this->rdel.")|\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*setfilter\\s+)|\G(".$this->ldel."\\s*\/)|\G(".$this->ldel."\\s*)|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(\\s*".$this->rdel.")|\G(<%)|\G(%>)|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state TEXT'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r1_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const TEXT = 1; |
function yy_r1_1($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
function yy_r1_2($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_COMMENT; |
} |
function yy_r1_4($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_STRIPON; |
} |
} |
function yy_r1_5($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_STRIPOFF; |
} |
} |
function yy_r1_6($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LITERALSTART; |
$this->yypushstate(self::LITERAL); |
} |
} |
function yy_r1_7($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELIF; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_9($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOR; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_10($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOREACH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_11($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELSETFILTER; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_12($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELSLASH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_13($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDEL; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r1_14($yy_subpatterns) |
{ |
if (in_array($this->value, Array('<?', '<?=', '<?php'))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_PHPSTARTTAG; |
} elseif ($this->value == '<?xml') { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_XMLTAG; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_FAKEPHPSTARTTAG; |
$this->value = substr($this->value, 0, 2); |
} |
} |
function yy_r1_15($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_PHPENDTAG; |
} |
function yy_r1_16($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
function yy_r1_17($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ASPSTARTTAG; |
} |
function yy_r1_18($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ASPENDTAG; |
} |
function yy_r1_19($yy_subpatterns) |
{ |
if ($this->mbstring_overload) { |
$to = mb_strlen($this->data,'latin1'); |
} else { |
$to = strlen($this->data); |
} |
preg_match("/{$this->ldel}|<\?|\?>|<%|%>/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); |
if (isset($match[0][1])) { |
$to = $match[0][1]; |
} |
if ($this->mbstring_overload) { |
$this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); |
} else { |
$this->value = substr($this->data,$this->counter,$to-$this->counter); |
} |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
public function yylex2() |
{ |
$tokenMap = array ( |
1 => 0, |
2 => 0, |
3 => 1, |
5 => 0, |
6 => 0, |
7 => 0, |
8 => 0, |
9 => 0, |
10 => 0, |
11 => 0, |
12 => 0, |
13 => 0, |
14 => 0, |
15 => 1, |
17 => 1, |
19 => 1, |
21 => 0, |
22 => 0, |
23 => 0, |
24 => 0, |
25 => 0, |
26 => 0, |
27 => 0, |
28 => 0, |
29 => 0, |
30 => 0, |
31 => 0, |
32 => 0, |
33 => 0, |
34 => 0, |
35 => 0, |
36 => 0, |
37 => 0, |
38 => 3, |
42 => 0, |
43 => 0, |
44 => 0, |
45 => 0, |
46 => 0, |
47 => 0, |
48 => 0, |
49 => 0, |
50 => 1, |
52 => 1, |
54 => 0, |
55 => 0, |
56 => 0, |
57 => 0, |
58 => 0, |
59 => 0, |
60 => 0, |
61 => 0, |
62 => 0, |
63 => 0, |
64 => 0, |
65 => 0, |
66 => 0, |
67 => 0, |
68 => 0, |
69 => 0, |
70 => 1, |
72 => 0, |
73 => 0, |
74 => 0, |
75 => 0, |
76 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(\")|\G('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|\G([$]smarty\\.block\\.(child|parent))|\G(\\$)|\G(\\s*".$this->rdel.")|\G(\\s+is\\s+in\\s+)|\G(\\s+as\\s+)|\G(\\s+to\\s+)|\G(\\s+step\\s+)|\G(\\s+instanceof\\s+)|\G(\\s*===\\s*)|\G(\\s*!==\\s*)|\G(\\s*==\\s*|\\s+eq\\s+)|\G(\\s*!=\\s*|\\s*<>\\s*|\\s+(ne|neq)\\s+)|\G(\\s*>=\\s*|\\s+(ge|gte)\\s+)|\G(\\s*<=\\s*|\\s+(le|lte)\\s+)|\G(\\s*>\\s*|\\s+gt\\s+)|\G(\\s*<\\s*|\\s+lt\\s+)|\G(\\s+mod\\s+)|\G(!\\s*|not\\s+)|\G(\\s*&&\\s*|\\s*and\\s+)|\G(\\s*\\|\\|\\s*|\\s*or\\s+)|\G(\\s*xor\\s+)|\G(\\s+is\\s+odd\\s+by\\s+)|\G(\\s+is\\s+not\\s+odd\\s+by\\s+)|\G(\\s+is\\s+odd)|\G(\\s+is\\s+not\\s+odd)|\G(\\s+is\\s+even\\s+by\\s+)|\G(\\s+is\\s+not\\s+even\\s+by\\s+)|\G(\\s+is\\s+even)|\G(\\s+is\\s+not\\s+even)|\G(\\s+is\\s+div\\s+by\\s+)|\G(\\s+is\\s+not\\s+div\\s+by\\s+)|\G(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\)\\s*)|\G(\\s*\\(\\s*)|\G(\\s*\\))|\G(\\[\\s*)|\G(\\s*\\])|\G(\\s*->\\s*)|\G(\\s*=>\\s*)|\G(\\s*=\\s*)|\G(\\+\\+|--)|\G(\\s*(\\+|-)\\s*)|\G(\\s*(\\*|\/|%)\\s*)|\G(@)|\G(#)|\G(\\s+[0-9]*[a-zA-Z_][a-zA-Z0-9_\-:]*\\s*=\\s*)|\G([0-9]*[a-zA-Z_]\\w*)|\G(\\d+)|\G(`)|\G(\\|)|\G(\\.)|\G(\\s*,\\s*)|\G(\\s*;)|\G(::)|\G(\\s*:\\s*)|\G(\\s*&\\s*)|\G(\\s*\\?\\s*)|\G(0[xX][0-9a-fA-F]+)|\G(\\s+)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*\/)|\G(".$this->ldel."\\s*)|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state SMARTY'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r2_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const SMARTY = 2; |
function yy_r2_1($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_QUOTE; |
$this->yypushstate(self::DOUBLEQUOTEDSTRING); |
} |
function yy_r2_2($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_SINGLEQUOTESTRING; |
} |
function yy_r2_3($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_SMARTYBLOCKCHILDPARENT; |
$this->taglineno = $this->line; |
} |
function yy_r2_5($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_DOLLAR; |
} |
function yy_r2_6($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_RDEL; |
$this->yypopstate(); |
} |
function yy_r2_7($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISIN; |
} |
function yy_r2_8($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_AS; |
} |
function yy_r2_9($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TO; |
} |
function yy_r2_10($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_STEP; |
} |
function yy_r2_11($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_INSTANCEOF; |
} |
function yy_r2_12($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_IDENTITY; |
} |
function yy_r2_13($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_NONEIDENTITY; |
} |
function yy_r2_14($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_EQUALS; |
} |
function yy_r2_15($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_NOTEQUALS; |
} |
function yy_r2_17($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_GREATEREQUAL; |
} |
function yy_r2_19($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LESSEQUAL; |
} |
function yy_r2_21($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_GREATERTHAN; |
} |
function yy_r2_22($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LESSTHAN; |
} |
function yy_r2_23($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_MOD; |
} |
function yy_r2_24($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_NOT; |
} |
function yy_r2_25($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LAND; |
} |
function yy_r2_26($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LOR; |
} |
function yy_r2_27($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LXOR; |
} |
function yy_r2_28($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISODDBY; |
} |
function yy_r2_29($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISNOTODDBY; |
} |
function yy_r2_30($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISODD; |
} |
function yy_r2_31($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISNOTODD; |
} |
function yy_r2_32($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISEVENBY; |
} |
function yy_r2_33($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISNOTEVENBY; |
} |
function yy_r2_34($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISEVEN; |
} |
function yy_r2_35($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISNOTEVEN; |
} |
function yy_r2_36($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISDIVBY; |
} |
function yy_r2_37($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ISNOTDIVBY; |
} |
function yy_r2_38($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TYPECAST; |
} |
function yy_r2_42($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_OPENP; |
} |
function yy_r2_43($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_CLOSEP; |
} |
function yy_r2_44($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_OPENB; |
} |
function yy_r2_45($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_CLOSEB; |
} |
function yy_r2_46($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_PTR; |
} |
function yy_r2_47($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_APTR; |
} |
function yy_r2_48($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_EQUAL; |
} |
function yy_r2_49($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_INCDEC; |
} |
function yy_r2_50($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_UNIMATH; |
} |
function yy_r2_52($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_MATH; |
} |
function yy_r2_54($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_AT; |
} |
function yy_r2_55($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_HATCH; |
} |
function yy_r2_56($yy_subpatterns) |
{ |
// resolve conflicts with shorttag and right_delimiter starting with '=' |
if (substr($this->data, $this->counter + strlen($this->value) - 1, $this->rdel_length) == $this->smarty->right_delimiter) { |
preg_match("/\s+/",$this->value,$match); |
$this->value = $match[0]; |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_SPACE; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ATTR; |
} |
} |
function yy_r2_57($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ID; |
} |
function yy_r2_58($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_INTEGER; |
} |
function yy_r2_59($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BACKTICK; |
$this->yypopstate(); |
} |
function yy_r2_60($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_VERT; |
} |
function yy_r2_61($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_DOT; |
} |
function yy_r2_62($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_COMMA; |
} |
function yy_r2_63($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_SEMICOLON; |
} |
function yy_r2_64($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_DOUBLECOLON; |
} |
function yy_r2_65($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_COLON; |
} |
function yy_r2_66($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ANDSYM; |
} |
function yy_r2_67($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_QMARK; |
} |
function yy_r2_68($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_HEX; |
} |
function yy_r2_69($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_SPACE; |
} |
function yy_r2_70($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELIF; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r2_72($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOR; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r2_73($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOREACH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r2_74($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELSLASH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r2_75($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDEL; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r2_76($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
public function yylex3() |
{ |
$tokenMap = array ( |
1 => 0, |
2 => 0, |
3 => 0, |
4 => 0, |
5 => 0, |
6 => 0, |
7 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/literal\\s*".$this->rdel.")|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state LITERAL'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r3_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const LITERAL = 3; |
function yy_r3_1($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LITERALSTART; |
$this->yypushstate(self::LITERAL); |
} |
} |
function yy_r3_2($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LITERALEND; |
$this->yypopstate(); |
} |
} |
function yy_r3_3($yy_subpatterns) |
{ |
if (in_array($this->value, Array('<?', '<?=', '<?php'))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_PHPSTARTTAG; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_FAKEPHPSTARTTAG; |
$this->value = substr($this->value, 0, 2); |
} |
} |
function yy_r3_4($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_PHPENDTAG; |
} |
function yy_r3_5($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ASPSTARTTAG; |
} |
function yy_r3_6($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_ASPENDTAG; |
} |
function yy_r3_7($yy_subpatterns) |
{ |
if ($this->mbstring_overload) { |
$to = mb_strlen($this->data,'latin1'); |
} else { |
$to = strlen($this->data); |
} |
preg_match("/{$this->ldel}\/?literal{$this->rdel}|<\?|<%|\?>|%>/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); |
if (isset($match[0][1])) { |
$to = $match[0][1]; |
} else { |
$this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); |
} |
if ($this->mbstring_overload) { |
$this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); |
} else { |
$this->value = substr($this->data,$this->counter,$to-$this->counter); |
} |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LITERAL; |
} |
public function yylex4() |
{ |
$tokenMap = array ( |
1 => 1, |
3 => 0, |
4 => 0, |
5 => 0, |
6 => 0, |
7 => 0, |
8 => 0, |
9 => 0, |
10 => 0, |
11 => 3, |
15 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*\/)|\G(".$this->ldel."\\s*)|\G(\")|\G(`\\$)|\G(\\$[0-9]*[a-zA-Z_]\\w*)|\G(\\$)|\G(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state DOUBLEQUOTEDSTRING'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r4_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const DOUBLEQUOTEDSTRING = 4; |
function yy_r4_1($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELIF; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r4_3($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOR; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r4_4($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELFOREACH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r4_5($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDELSLASH; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r4_6($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_LDEL; |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
} |
function yy_r4_7($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_QUOTE; |
$this->yypopstate(); |
} |
function yy_r4_8($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BACKTICK; |
$this->value = substr($this->value,0,-1); |
$this->yypushstate(self::SMARTY); |
$this->taglineno = $this->line; |
} |
function yy_r4_9($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_DOLLARID; |
} |
function yy_r4_10($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
function yy_r4_11($yy_subpatterns) |
{ |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
function yy_r4_15($yy_subpatterns) |
{ |
if ($this->mbstring_overload) { |
$to = mb_strlen($this->data,'latin1'); |
} else { |
$to = strlen($this->data); |
} |
if ($this->mbstring_overload) { |
$this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); |
} else { |
$this->value = substr($this->data,$this->counter,$to-$this->counter); |
} |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_TEXT; |
} |
public function yylex5() |
{ |
$tokenMap = array ( |
1 => 0, |
2 => 0, |
3 => 0, |
4 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(".$this->ldel."\\s*strip\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/strip\\s*".$this->rdel.")|\G(".$this->ldel."\\s*block)|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state CHILDBODY'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r5_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const CHILDBODY = 5; |
function yy_r5_1($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
return false; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_STRIPON; |
} |
} |
function yy_r5_2($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
return false; |
} else { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_STRIPOFF; |
} |
} |
function yy_r5_3($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
return false; |
} else { |
$this->yypopstate(); |
return true; |
} |
} |
function yy_r5_4($yy_subpatterns) |
{ |
if ($this->mbstring_overload) { |
$to = mb_strlen($this->data,'latin1'); |
} else { |
$to = strlen($this->data); |
} |
preg_match("/".$this->ldel."\s*((\/)?strip\s*".$this->rdel."|block\s+)/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); |
if (isset($match[0][1])) { |
$to = $match[0][1]; |
} |
if ($this->mbstring_overload) { |
$this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); |
} else { |
$this->value = substr($this->data,$this->counter,$to-$this->counter); |
} |
return false; |
} |
public function yylex6() |
{ |
$tokenMap = array ( |
1 => 0, |
2 => 0, |
3 => 1, |
5 => 0, |
); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
$yy_global_pattern = "/\G(".$this->ldel."\\s*block)|\G(".$this->ldel."\\s*\/block)|\G(".$this->ldel."\\s*[$]smarty\\.block\\.(child|parent))|\G([\S\s])/iS"; |
do { |
if ($this->mbstring_overload ? preg_match($yy_global_pattern, mb_substr($this->data, $this->counter,2000000000,'latin1'), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { |
$yysubmatches = $yymatches; |
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns |
if (!count($yymatches)) { |
throw new Exception('Error: lexing failed because a rule matched' . |
' an empty string. Input "' . substr($this->data, |
$this->counter, 5) . '... state CHILDBLOCK'); |
} |
next($yymatches); // skip global match |
$this->token = key($yymatches); // token number |
if ($tokenMap[$this->token]) { |
// extract sub-patterns for passing to lex function |
$yysubmatches = array_slice($yysubmatches, $this->token + 1, |
$tokenMap[$this->token]); |
} else { |
$yysubmatches = array(); |
} |
$this->value = current($yymatches); // token value |
$r = $this->{'yy_r6_' . $this->token}($yysubmatches); |
if ($r === null) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
// accept this token |
return true; |
} elseif ($r === true) { |
// we have changed state |
// process this token in the new state |
return $this->yylex(); |
} elseif ($r === false) { |
$this->counter += ($this->mbstring_overload ? mb_strlen($this->value,'latin1'): strlen($this->value)); |
$this->line += substr_count($this->value, "\n"); |
if ($this->counter >= ($this->mbstring_overload ? mb_strlen($this->data,'latin1'): strlen($this->data))) { |
return false; // end of input |
} |
// skip this token |
continue; |
} } else { |
throw new Exception('Unexpected input at line' . $this->line . |
': ' . $this->data[$this->counter]); |
} |
break; |
} while (true); |
} // end function |
const CHILDBLOCK = 6; |
function yy_r6_1($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BLOCKSOURCE; |
} else { |
$this->yypopstate(); |
return true; |
} |
} |
function yy_r6_2($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BLOCKSOURCE; |
} else { |
$this->yypopstate(); |
return true; |
} |
} |
function yy_r6_3($yy_subpatterns) |
{ |
if ($this->smarty->auto_literal && ($this->mbstring_overload ? (mb_strpos(" \n\t\r",mb_substr($this->value,$this->ldel_length,1,'latin1'),0,'latin1') !== false) : (strpos(" \n\t\r",substr($this->value,$this->ldel_length,1)) !== false))) { |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BLOCKSOURCE; |
} else { |
$this->yypopstate(); |
return true; |
} |
} |
function yy_r6_5($yy_subpatterns) |
{ |
if ($this->mbstring_overload) { |
$to = mb_strlen($this->data,'latin1'); |
} else { |
$to = strlen($this->data); |
} |
preg_match("/".$this->ldel."\s*((\/)?block(\s|".$this->rdel.")|[\$]smarty\.block\.(child|parent)\s*".$this->rdel.")/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); |
if (isset($match[0][1])) { |
$to = $match[0][1]; |
} |
if ($this->mbstring_overload) { |
$this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); |
} else { |
$this->value = substr($this->data,$this->counter,$to-$this->counter); |
} |
$this->token = Plugin_Smarty_InternalTemplateparser::TP_BLOCKSOURCE; |
} |
} |
/trunk/classes/internalcompilecapture.php |
---|
New file |
0,0 → 1,97 |
<?php |
/** |
* Smarty Internal Plugin Compile Capture |
* |
* Compiles the {capture} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Capture Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileCapture extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('name'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('name', 'assign', 'append'); |
/** |
* Compiles code for the {capture} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
$buffer = isset($_attr['name']) ? $_attr['name'] : "'default'"; |
$assign = isset($_attr['assign']) ? $_attr['assign'] : 'null'; |
$append = isset($_attr['append']) ? $_attr['append'] : 'null'; |
$compiler->_capture_stack[0][] = array($buffer, $assign, $append, $compiler->nocache); |
// maybe nocache because of nocache variables |
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache; |
$_output = "<?php \$_smarty_tpl->_capture_stack[0][] = array($buffer, $assign, $append); ob_start(); ?>"; |
return $_output; |
} |
} |
/** |
* Smarty Internal Plugin Compile Captureclose Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileCaptureClose extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {/capture} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
// must endblock be nocache? |
if ($compiler->nocache) { |
$compiler->tag_nocache = true; |
} |
list($buffer, $assign, $append, $compiler->nocache) = array_pop($compiler->_capture_stack[0]); |
$_output = "<?php list(\$_capture_buffer, \$_capture_assign, \$_capture_append) = array_pop(\$_smarty_tpl->_capture_stack[0]);\n"; |
$_output .= "if (!empty(\$_capture_buffer)) {\n"; |
$_output .= " if (isset(\$_capture_assign)) \$_smarty_tpl->assign(\$_capture_assign, ob_get_contents());\n"; |
$_output .= " if (isset( \$_capture_append)) \$_smarty_tpl->append( \$_capture_append, ob_get_contents());\n"; |
$_output .= " Plugin_Smarty_Smarty::\$_smarty_vars['capture'][\$_capture_buffer]=ob_get_clean();\n"; |
$_output .= "} else \$_smarty_tpl->capture_error();?>"; |
return $_output; |
} |
} |
/trunk/classes/data.php |
---|
New file |
0,0 → 1,41 |
<?php |
/** |
* class for the Smarty data object |
* |
* The Smarty data object will hold Smarty variables in the current scope |
* |
* @package Smarty |
* @subpackage Template |
*/ |
class Plugin_Smarty_Data extends Plugin_Smarty_InternalData |
{ |
/** |
* Smarty object |
* |
* @var Smarty |
*/ |
public $smarty = null; |
/** |
* create Smarty data object |
* |
* @param Smarty|array $_parent parent template |
* @param Plugin_Smarty_Smarty $smarty global smarty instance |
*/ |
public function __construct ($_parent = null, $smarty = null) |
{ |
$this->smarty = $smarty; |
if (is_object($_parent)) { |
// when object set up back pointer |
$this->parent = $_parent; |
} elseif (is_array($_parent)) { |
// set up variable values |
foreach ($_parent as $_key => $_val) { |
$this->tpl_vars[$_key] = new Plugin_Smarty_Variable($_val); |
} |
} elseif ($_parent != null) { |
throw new Plugin_Smarty_Exception("Wrong type for template variables"); |
} |
} |
} |
/trunk/classes/ttyytoken.php |
---|
New file |
0,0 → 1,66 |
<?php |
class Plugin_Smarty_TPyyToken implements ArrayAccess |
{ |
public $string = ''; |
public $metadata = array(); |
public function __construct($s, $m = array()) |
{ |
if ($s instanceof Plugin_Smarty_TPyyToken) { |
$this->string = $s->string; |
$this->metadata = $s->metadata; |
} else { |
$this->string = (string) $s; |
if ($m instanceof Plugin_Smarty_TPyyToken) { |
$this->metadata = $m->metadata; |
} elseif (is_array($m)) { |
$this->metadata = $m; |
} |
} |
} |
public function __toString() |
{ |
return $this->_string; |
} |
public function offsetExists($offset) |
{ |
return isset($this->metadata[$offset]); |
} |
public function offsetGet($offset) |
{ |
return $this->metadata[$offset]; |
} |
public function offsetSet($offset, $value) |
{ |
if ($offset === null) { |
if (isset($value[0])) { |
$x = ($value instanceof Plugin_Smarty_TPyyToken) ? |
$value->metadata : $value; |
$this->metadata = array_merge($this->metadata, $x); |
return; |
} |
$offset = count($this->metadata); |
} |
if ($value === null) { |
return; |
} |
if ($value instanceof Plugin_Smarty_TPyyToken) { |
if ($value->metadata) { |
$this->metadata[$offset] = $value->metadata; |
} |
} elseif ($value) { |
$this->metadata[$offset] = $value; |
} |
} |
public function offsetUnset($offset) |
{ |
unset($this->metadata[$offset]); |
} |
} |
/trunk/classes/internalcompileprivateblockplugin.php |
---|
New file |
0,0 → 1,86 |
<?php |
/** |
* Smarty Internal Plugin Compile Block Plugin |
* |
* Compiles code for the execution of block plugin |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Block Plugin Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompilePrivateBlockPlugin extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('_any'); |
/** |
* Compiles code for the execution of block plugin |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @param array $parameter array with compilation parameter |
* @param string $tag name of block plugin |
* @param string $function PHP function name |
* @return string compiled code |
*/ |
public function compile($args, $compiler, $parameter, $tag, $function) |
{ |
if (!isset($tag[5]) || substr($tag, -5) != 'close') { |
// opening tag of block plugin |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->tag_nocache = true; |
} |
unset($_attr['nocache']); |
// convert attributes into parameter array string |
$_paramsArray = array(); |
foreach ($_attr as $_key => $_value) { |
if (is_int($_key)) { |
$_paramsArray[] = "$_key=>$_value"; |
} else { |
$_paramsArray[] = "'$_key'=>$_value"; |
} |
} |
$_params = 'array(' . implode(",", $_paramsArray) . ')'; |
$this->openTag($compiler, $tag, array($_params, $compiler->nocache)); |
// maybe nocache because of nocache variables or nocache plugin |
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache; |
// compile code |
$output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; echo {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>"; |
} else { |
// must endblock be nocache? |
if ($compiler->nocache) { |
$compiler->tag_nocache = true; |
} |
// closing tag of block plugin, restore nocache |
list($_params, $compiler->nocache) = $this->closeTag($compiler, substr($tag, 0, -5)); |
// This tag does create output |
$compiler->has_output = true; |
// compile code |
if (!isset($parameter['modifier_list'])) { |
$mod_pre = $mod_post =''; |
} else { |
$mod_pre = ' ob_start(); '; |
$mod_post = 'echo '.$compiler->compileTag('privatemodifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';'; |
} |
$output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo {$function}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post." } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>"; |
} |
return $output . "\n"; |
} |
} |
/trunk/classes/internalcompileelseif.php |
---|
New file |
0,0 → 1,85 |
<?php |
/** |
* Smarty Internal Plugin Compile ElseIf Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileElseif extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {elseif} tag |
* |
* @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) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
list($nesting, $compiler->tag_nocache) = $this->closeTag($compiler, array('if', 'elseif')); |
if (!array_key_exists("if condition",$parameter)) { |
$compiler->trigger_template_error("missing elseif condition", $compiler->lex->taglineno); |
} |
if (is_array($parameter['if condition'])) { |
$condition_by_assign = true; |
if ($compiler->nocache) { |
$_nocache = ',true'; |
// create nocache var to make it know for further compiling |
if (is_array($parameter['if condition']['var'])) { |
$compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Plugin_Smarty_Variable(null, true); |
} else { |
$compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Plugin_Smarty_Variable(null, true); |
} |
} else { |
$_nocache = ''; |
} |
} else { |
$condition_by_assign = false; |
} |
if (empty($compiler->prefix_code)) { |
if ($condition_by_assign) { |
$this->openTag($compiler, 'elseif', array($nesting + 1, $compiler->tag_nocache)); |
if (is_array($parameter['if condition']['var'])) { |
$_output = "<?php } else { if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n"; |
$_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . ") {?>"; |
} else { |
$_output = "<?php } else { if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Plugin_Smarty_Variable(null{$_nocache});"; |
$_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . ") {?>"; |
} |
return $_output; |
} else { |
$this->openTag($compiler, 'elseif', array($nesting, $compiler->tag_nocache)); |
return "<?php } elseif ({$parameter['if condition']}) {?>"; |
} |
} else { |
$tmp = ''; |
foreach ($compiler->prefix_code as $code) |
$tmp .= $code; |
$compiler->prefix_code = array(); |
$this->openTag($compiler, 'elseif', array($nesting + 1, $compiler->tag_nocache)); |
if ($condition_by_assign) { |
if (is_array($parameter['if condition']['var'])) { |
$_output = "<?php } else {?>{$tmp}<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n"; |
$_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . ") {?>"; |
} else { |
$_output = "<?php } else {?>{$tmp}<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Plugin_Smarty_Variable(null{$_nocache});"; |
$_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . ") {?>"; |
} |
return $_output; |
} else { |
return "<?php } else {?>{$tmp}<?php if ({$parameter['if condition']}) {?>"; |
} |
} |
} |
} |
/trunk/classes/internalcompileappend.php |
---|
New file |
0,0 → 1,51 |
<?php |
/** |
* Smarty Internal Plugin Compile Append |
* |
* Compiles the {append} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Append Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileAppend extends Plugin_Smarty_InternalCompileAssign |
{ |
/** |
* Compiles code for the {append} tag |
* |
* @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) |
{ |
// the following must be assigned at runtime because it will be overwritten in parent class |
$this->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); |
} |
} |
/trunk/classes/internalcompilewhile.php |
---|
New file |
0,0 → 1,66 |
<?php |
/** |
* Smarty Internal Plugin Compile While |
* |
* Compiles the {while} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile While Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileWhile extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {while} tag |
* |
* @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) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
$this->openTag($compiler, 'while', $compiler->nocache); |
if (!array_key_exists("if condition",$parameter)) { |
$compiler->trigger_template_error("missing while condition", $compiler->lex->taglineno); |
} |
// maybe nocache because of nocache variables |
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache; |
if (is_array($parameter['if condition'])) { |
if ($compiler->nocache) { |
$_nocache = ',true'; |
// create nocache var to make it know for further compiling |
if (is_array($parameter['if condition']['var'])) { |
$compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Plugin_Smarty_Variable(null, true); |
} else { |
$compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Plugin_Smarty_Variable(null, true); |
} |
} else { |
$_nocache = ''; |
} |
if (is_array($parameter['if condition']['var'])) { |
$_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n"; |
$_output .= "while (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . ") {?>"; |
} else { |
$_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Plugin_Smarty_Variable(null{$_nocache});"; |
$_output .= "while (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . ") {?>"; |
} |
return $_output; |
} else { |
return "<?php while ({$parameter['if condition']}) {?>"; |
} |
} |
} |
/trunk/classes/smarty.php |
---|
New file |
0,0 → 1,1515 |
<?php |
/** |
* Project: Smarty: the PHP compiling template engine |
* File: Smarty.class.php |
* SVN: $Id: Smarty.class.php 4800 2013-12-15 15:19:01Z Uwe.Tews@googlemail.com $ |
* |
* This library is free software; you can redistribute it and/or |
* modify it under the terms of the GNU Lesser General Public |
* License as published by the Free Software Foundation; either |
* version 2.1 of the License, or (at your option) any later version. |
* |
* This library is distributed in the hope that it will be useful, |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
* Lesser General Public License for more details. |
* |
* You should have received a copy of the GNU Lesser General Public |
* License along with this library; if not, write to the Free Software |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
* |
* For questions, help, comments, discussion, etc., please join the |
* Smarty mailing list. Send a blank e-mail to |
* smarty-discussion-subscribe@googlegroups.com |
* |
* @link http://www.smarty.net/ |
* @copyright 2008 New Digital Group, Inc. |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Uwe Tews |
* @author Rodney Rehm |
* @package Smarty |
* @version 3.1-DEV |
*/ |
/** |
* define shorthand directory separator constant |
*/ |
if (!defined('DS')) { |
define('DS', DIRECTORY_SEPARATOR); |
} |
/** |
* set SMARTY_DIR to absolute path to Smarty library files. |
* Sets SMARTY_DIR only if user application has not already defined it. |
*/ |
if (!defined('SMARTY_DIR')) { |
define('SMARTY_DIR', dirname(__FILE__) . DS); |
} |
/** |
* set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins. |
* Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it. |
*/ |
if (!defined('SMARTY_SYSPLUGINS_DIR')) { |
define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS); |
} |
if (!defined('SMARTY_PLUGINS_DIR')) { |
define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS); |
} |
if (!defined('SMARTY_MBSTRING')) { |
define('SMARTY_MBSTRING', function_exists('mb_split')); |
} |
if (!defined('SMARTY_RESOURCE_CHAR_SET')) { |
// UTF-8 can only be done properly when mbstring is available! |
/** |
* @deprecated in favor of Plugin_Smarty_Smarty::$_CHARSET |
*/ |
define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1'); |
} |
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) { |
/** |
* @deprecated in favor of Plugin_Smarty_Smarty::$_DATE_FORMAT |
*/ |
define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y'); |
} |
/** |
* This is the main Smarty class |
* @package Smarty |
*/ |
class Plugin_Smarty_Smarty extends Plugin_Smarty_InternalTemplateBase |
{ |
/**#@+ |
* constant definitions |
*/ |
/** |
* smarty version |
*/ |
const SMARTY_VERSION = 'Smarty-3.1.16'; |
/** |
* define variable scopes |
*/ |
const SCOPE_LOCAL = 0; |
const SCOPE_PARENT = 1; |
const SCOPE_ROOT = 2; |
const SCOPE_GLOBAL = 3; |
/** |
* define caching modes |
*/ |
const CACHING_OFF = 0; |
const CACHING_LIFETIME_CURRENT = 1; |
const CACHING_LIFETIME_SAVED = 2; |
/** |
* define constant for clearing cache files be saved expiration datees |
*/ |
const CLEAR_EXPIRED = -1; |
/** |
* define compile check modes |
*/ |
const COMPILECHECK_OFF = 0; |
const COMPILECHECK_ON = 1; |
const COMPILECHECK_CACHEMISS = 2; |
/** |
* modes for handling of "<?php ... ?>" tags in templates. |
*/ |
const PHP_PASSTHRU = 0; //-> print tags as plain text |
const PHP_QUOTE = 1; //-> escape tags as entities |
const PHP_REMOVE = 2; //-> escape tags as entities |
const PHP_ALLOW = 3; //-> escape tags as entities |
/** |
* filter types |
*/ |
const FILTER_POST = 'post'; |
const FILTER_PRE = 'pre'; |
const FILTER_OUTPUT = 'output'; |
const FILTER_VARIABLE = 'variable'; |
/** |
* plugin types |
*/ |
const PLUGIN_FUNCTION = 'function'; |
const PLUGIN_BLOCK = 'block'; |
const PLUGIN_COMPILER = 'compiler'; |
const PLUGIN_MODIFIER = 'modifier'; |
const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler'; |
/**#@-*/ |
/** |
* assigned global tpl vars |
*/ |
public static $global_tpl_vars = array(); |
/** |
* error handler returned by set_error_hanlder() in Plugin_Smarty_Smarty::muteExpectedErrors() |
*/ |
public static $_previous_error_handler = null; |
/** |
* contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors() |
*/ |
public static $_muted_directories = array(); |
/** |
* Flag denoting if Multibyte String functions are available |
*/ |
public static $_MBSTRING = SMARTY_MBSTRING; |
/** |
* The character set to adhere to (e.g. "UTF-8") |
*/ |
public static $_CHARSET = SMARTY_RESOURCE_CHAR_SET; |
/** |
* The date format to be used internally |
* (accepts date() and strftime()) |
*/ |
public static $_DATE_FORMAT = SMARTY_RESOURCE_DATE_FORMAT; |
/** |
* Flag denoting if PCRE should run in UTF-8 mode |
*/ |
public static $_UTF8_MODIFIER = 'u'; |
/** |
* Flag denoting if operating system is windows |
*/ |
public static $_IS_WINDOWS = false; |
/**#@+ |
* variables |
*/ |
/** |
* auto literal on delimiters with whitspace |
* @var boolean |
*/ |
public $auto_literal = true; |
/** |
* display error on not assigned variables |
* @var boolean |
*/ |
public $error_unassigned = false; |
/** |
* look up relative filepaths in include_path |
* @var boolean |
*/ |
public $use_include_path = false; |
/** |
* template directory |
* @var array |
*/ |
private $template_dir = array(); |
/** |
* joined template directory string used in cache keys |
* @var string |
*/ |
public $joined_template_dir = null; |
/** |
* joined config directory string used in cache keys |
* @var string |
*/ |
public $joined_config_dir = null; |
/** |
* default template handler |
* @var callable |
*/ |
public $default_template_handler_func = null; |
/** |
* default config handler |
* @var callable |
*/ |
public $default_config_handler_func = null; |
/** |
* default plugin handler |
* @var callable |
*/ |
public $default_plugin_handler_func = null; |
/** |
* compile directory |
* @var string |
*/ |
private $compile_dir = null; |
/** |
* plugins directory |
* @var array |
*/ |
private $plugins_dir = array(); |
/** |
* cache directory |
* @var string |
*/ |
private $cache_dir = null; |
/** |
* config directory |
* @var array |
*/ |
private $config_dir = array(); |
/** |
* force template compiling? |
* @var boolean |
*/ |
public $force_compile = false; |
/** |
* check template for modifications? |
* @var boolean |
*/ |
public $compile_check = true; |
/** |
* use sub dirs for compiled/cached files? |
* @var boolean |
*/ |
public $use_sub_dirs = false; |
/** |
* allow ambiguous resources (that are made unique by the resource handler) |
* @var boolean |
*/ |
public $allow_ambiguous_resources = false; |
/** |
* caching enabled |
* @var boolean |
*/ |
public $caching = false; |
/** |
* merge compiled includes |
* @var boolean |
*/ |
public $merge_compiled_includes = false; |
/** |
* template inheritance merge compiled includes |
* @var boolean |
*/ |
public $inheritance_merge_compiled_includes = true; |
/** |
* cache lifetime in seconds |
* @var integer |
*/ |
public $cache_lifetime = 3600; |
/** |
* force cache file creation |
* @var boolean |
*/ |
public $force_cache = false; |
/** |
* Set this if you want different sets of cache files for the same |
* templates. |
* |
* @var string |
*/ |
public $cache_id = null; |
/** |
* Set this if you want different sets of compiled files for the same |
* templates. |
* |
* @var string |
*/ |
public $compile_id = null; |
/** |
* template left-delimiter |
* @var string |
*/ |
public $left_delimiter = "{"; |
/** |
* template right-delimiter |
* @var string |
*/ |
public $right_delimiter = "}"; |
/**#@+ |
* security |
*/ |
/** |
* class name |
* |
* This should be instance of Plugin_Smarty_Security. |
* |
* @var string |
* @see Plugin_Smarty_Security |
*/ |
public $security_class = 'Plugin_Smarty_Security'; |
/** |
* implementation of security class |
* |
* @var Plugin_Smarty_Security |
*/ |
public $security_policy = null; |
/** |
* controls handling of PHP-blocks |
* |
* @var integer |
*/ |
public $php_handling = self::PHP_PASSTHRU; |
/** |
* controls if the php template file resource is allowed |
* |
* @var bool |
*/ |
public $allow_php_templates = false; |
/** |
* Should compiled-templates be prevented from being called directly? |
* |
* {@internal |
* Currently used by Plugin_Smarty_InternalTemplate only. |
* }} |
* |
* @var boolean |
*/ |
public $direct_access_security = true; |
/**#@-*/ |
/** |
* debug mode |
* |
* Setting this to true enables the debug-console. |
* |
* @var boolean |
*/ |
public $debugging = false; |
/** |
* This determines if debugging is enable-able from the browser. |
* <ul> |
* <li>NONE => no debugging control allowed</li> |
* <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li> |
* </ul> |
* @var string |
*/ |
public $debugging_ctrl = 'NONE'; |
/** |
* Name of debugging URL-param. |
* |
* Only used when $debugging_ctrl is set to 'URL'. |
* The name of the URL-parameter that activates debugging. |
* |
* @var type |
*/ |
public $smarty_debug_id = 'SMARTY_DEBUG'; |
/** |
* Path of debug template. |
* @var string |
*/ |
public $debug_tpl = null; |
/** |
* When set, smarty uses this value as error_reporting-level. |
* @var int |
*/ |
public $error_reporting = null; |
/** |
* Internal flag for getTags() |
* @var boolean |
*/ |
public $get_used_tags = false; |
/**#@+ |
* config var settings |
*/ |
/** |
* Controls whether variables with the same name overwrite each other. |
* @var boolean |
*/ |
public $config_overwrite = true; |
/** |
* Controls whether config values of on/true/yes and off/false/no get converted to boolean. |
* @var boolean |
*/ |
public $config_booleanize = true; |
/** |
* Controls whether hidden config sections/vars are read from the file. |
* @var boolean |
*/ |
public $config_read_hidden = false; |
/**#@-*/ |
/**#@+ |
* resource locking |
*/ |
/** |
* locking concurrent compiles |
* @var boolean |
*/ |
public $compile_locking = true; |
/** |
* Controls whether cache resources should emply locking mechanism |
* @var boolean |
*/ |
public $cache_locking = false; |
/** |
* seconds to wait for acquiring a lock before ignoring the write lock |
* @var float |
*/ |
public $locking_timeout = 10; |
/**#@-*/ |
/** |
* global template functions |
* @var array |
*/ |
public $template_functions = array(); |
/** |
* resource type used if none given |
* |
* Must be an valid key of $registered_resources. |
* @var string |
*/ |
public $default_resource_type = 'file'; |
/** |
* caching type |
* |
* Must be an element of $cache_resource_types. |
* |
* @var string |
*/ |
public $caching_type = 'file'; |
/** |
* internal config properties |
* @var array |
*/ |
public $properties = array(); |
/** |
* config type |
* @var string |
*/ |
public $default_config_type = 'file'; |
/** |
* cached template objects |
* @var array |
*/ |
public $template_objects = array(); |
/** |
* check If-Modified-Since headers |
* @var boolean |
*/ |
public $cache_modified_check = false; |
/** |
* registered plugins |
* @var array |
*/ |
public $registered_plugins = array(); |
/** |
* plugin search order |
* @var array |
*/ |
public $plugin_search_order = array('function', 'block', 'compiler', 'class'); |
/** |
* registered objects |
* @var array |
*/ |
public $registered_objects = array(); |
/** |
* registered classes |
* @var array |
*/ |
public $registered_classes = array(); |
/** |
* registered filters |
* @var array |
*/ |
public $registered_filters = array(); |
/** |
* registered resources |
* @var array |
*/ |
public $registered_resources = array(); |
/** |
* resource handler cache |
* @var array |
*/ |
public $_resource_handlers = array(); |
/** |
* registered cache resources |
* @var array |
*/ |
public $registered_cache_resources = array(); |
/** |
* cache resource handler cache |
* @var array |
*/ |
public $_cacheresource_handlers = array(); |
/** |
* autoload filter |
* @var array |
*/ |
public $autoload_filters = array(); |
/** |
* default modifier |
* @var array |
*/ |
public $default_modifiers = array(); |
/** |
* autoescape variable output |
* @var boolean |
*/ |
public $escape_html = false; |
/** |
* global internal smarty vars |
* @var array |
*/ |
public static $_smarty_vars = array(); |
/** |
* start time for execution time calculation |
* @var int |
*/ |
public $start_time = 0; |
/** |
* default file permissions |
* @var int |
*/ |
public $_file_perms = 0644; |
/** |
* default dir permissions |
* @var int |
*/ |
public $_dir_perms = 0771; |
/** |
* block tag hierarchy |
* @var array |
*/ |
public $_tag_stack = array(); |
/** |
* self pointer to Smarty object |
* @var Smarty |
*/ |
public $smarty; |
/** |
* required by the compiler for BC |
* @var string |
*/ |
public $_current_file = null; |
/** |
* internal flag to enable parser debugging |
* @var bool |
*/ |
public $_parserdebug = false; |
/** |
* Saved parameter of merged templates during compilation |
* |
* @var array |
*/ |
public $merged_templates_func = array(); |
/**#@-*/ |
/** |
* Initialize new Smarty object |
* |
*/ |
public function __construct() |
{ |
// selfpointer needed by some other class methods |
$this->smarty = $this; |
if (is_callable('mb_internal_encoding')) { |
mb_internal_encoding(Plugin_Smarty_Smarty::$_CHARSET); |
} |
$this->start_time = microtime(true); |
// set default dirs |
$this->setTemplateDir('.' . DS . 'templates' . DS) |
->setCompileDir('.' . DS . 'templates_c' . DS) |
->setPluginsDir(SMARTY_PLUGINS_DIR) |
->setCacheDir('.' . DS . 'cache' . DS) |
->setConfigDir('.' . DS . 'configs' . DS); |
$this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl'; |
if (isset($_SERVER['SCRIPT_NAME'])) { |
$this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']); |
} |
} |
/** |
* Class destructor |
*/ |
public function __destruct() |
{ |
// intentionally left blank |
} |
/** |
* <<magic>> set selfpointer on cloned object |
*/ |
public function __clone() |
{ |
$this->smarty = $this; |
} |
/** |
* <<magic>> Generic getter. |
* |
* Calls the appropriate getter function. |
* Issues an E_USER_NOTICE if no valid getter is found. |
* |
* @param string $name property name |
* @return mixed |
*/ |
public function __get($name) |
{ |
$allowed = array( |
'template_dir' => 'getTemplateDir', |
'config_dir' => 'getConfigDir', |
'plugins_dir' => 'getPluginsDir', |
'compile_dir' => 'getCompileDir', |
'cache_dir' => 'getCacheDir', |
); |
if (isset($allowed[$name])) { |
return $this->{$allowed[$name]}(); |
} else { |
trigger_error('Undefined property: '. get_class($this) .'::$'. $name, E_USER_NOTICE); |
} |
} |
/** |
* <<magic>> Generic setter. |
* |
* Calls the appropriate setter function. |
* Issues an E_USER_NOTICE if no valid setter is found. |
* |
* @param string $name property name |
* @param mixed $value parameter passed to setter |
*/ |
public function __set($name, $value) |
{ |
$allowed = array( |
'template_dir' => 'setTemplateDir', |
'config_dir' => 'setConfigDir', |
'plugins_dir' => 'setPluginsDir', |
'compile_dir' => 'setCompileDir', |
'cache_dir' => 'setCacheDir', |
); |
if (isset($allowed[$name])) { |
$this->{$allowed[$name]}($value); |
} else { |
trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE); |
} |
} |
/** |
* Check if a template resource exists |
* |
* @param string $resource_name template name |
* @return boolean status |
*/ |
public function templateExists($resource_name) |
{ |
// create template object |
$save = $this->template_objects; |
$tpl = new $this->template_class($resource_name, $this); |
// check if it does exists |
$result = $tpl->source->exists; |
$this->template_objects = $save; |
return $result; |
} |
/** |
* Returns a single or all global variables |
* |
* @param object $smarty |
* @param string $varname variable name or null |
* @return string variable value or or array of variables |
*/ |
public function getGlobal($varname = null) |
{ |
if (isset($varname)) { |
if (isset(self::$global_tpl_vars[$varname])) { |
return self::$global_tpl_vars[$varname]->value; |
} else { |
return ''; |
} |
} else { |
$_result = array(); |
foreach (self::$global_tpl_vars AS $key => $var) { |
$_result[$key] = $var->value; |
} |
return $_result; |
} |
} |
/** |
* Empty cache folder |
* |
* @param integer $exp_time expiration time |
* @param string $type resource type |
* @return integer number of cache files deleted |
*/ |
public function clearAllCache($exp_time = null, $type = null) |
{ |
// load cache resource and call clearAll |
$_cache_resource = Smarty_CacheResource::load($this, $type); |
Smarty_CacheResource::invalidLoadedCache($this); |
return $_cache_resource->clearAll($this, $exp_time); |
} |
/** |
* Empty cache for a specific template |
* |
* @param string $template_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param integer $exp_time expiration time |
* @param string $type resource type |
* @return integer number of cache files deleted |
*/ |
public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null) |
{ |
// load cache resource and call clear |
$_cache_resource = Smarty_CacheResource::load($this, $type); |
Smarty_CacheResource::invalidLoadedCache($this); |
return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time); |
} |
/** |
* Loads security class and enables security |
* |
* @param string|Plugin_Smarty_Security $security_class if a string is used, it must be class-name |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
* @throws Plugin_Smarty_Exception when an invalid class name is provided |
*/ |
public function enableSecurity($security_class = null) |
{ |
if ($security_class instanceof Plugin_Smarty_Security) { |
$this->security_policy = $security_class; |
return $this; |
} elseif (is_object($security_class)) { |
throw new Plugin_Smarty_Exception("Class '" . get_class($security_class) . "' must extend Plugin_Smarty_Security."); |
} |
if ($security_class == null) { |
$security_class = $this->security_class; |
} |
if (!class_exists($security_class)) { |
throw new Plugin_Smarty_Exception("Security class '$security_class' is not defined"); |
} elseif ($security_class !== 'Plugin_Smarty_Security' && !is_subclass_of($security_class, 'Plugin_Smarty_Security')) { |
throw new Plugin_Smarty_Exception("Class '$security_class' must extend Plugin_Smarty_Security."); |
} else { |
$this->security_policy = new $security_class($this); |
} |
return $this; |
} |
/** |
* Disable security |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function disableSecurity() |
{ |
$this->security_policy = null; |
return $this; |
} |
/** |
* Set template directory |
* |
* @param string|array $template_dir directory(s) of template sources |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setTemplateDir($template_dir) |
{ |
$this->template_dir = array(); |
foreach ((array) $template_dir as $k => $v) { |
$this->template_dir[$k] = rtrim($v, '/\\') . DS; |
} |
$this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir); |
return $this; |
} |
/** |
* Add template directory(s) |
* |
* @param string|array $template_dir directory(s) of template sources |
* @param string $key of the array element to assign the template dir to |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
* @throws Plugin_Smarty_Exception when the given template directory is not valid |
*/ |
public function addTemplateDir($template_dir, $key=null) |
{ |
// make sure we're dealing with an array |
$this->template_dir = (array) $this->template_dir; |
if (is_array($template_dir)) { |
foreach ($template_dir as $k => $v) { |
if (is_int($k)) { |
// indexes are not merged but appended |
$this->template_dir[] = rtrim($v, '/\\') . DS; |
} else { |
// string indexes are overridden |
$this->template_dir[$k] = rtrim($v, '/\\') . DS; |
} |
} |
} elseif ($key !== null) { |
// override directory at specified index |
$this->template_dir[$key] = rtrim($template_dir, '/\\') . DS; |
} else { |
// append new directory |
$this->template_dir[] = rtrim($template_dir, '/\\') . DS; |
} |
$this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir); |
return $this; |
} |
/** |
* Get template directories |
* |
* @param mixed index of directory to get, null to get all |
* @return array|string list of template directories, or directory of $index |
*/ |
public function getTemplateDir($index=null) |
{ |
if ($index !== null) { |
return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null; |
} |
return (array) $this->template_dir; |
} |
/** |
* Set config directory |
* |
* @param string|array $template_dir directory(s) of configuration sources |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setConfigDir($config_dir) |
{ |
$this->config_dir = array(); |
foreach ((array) $config_dir as $k => $v) { |
$this->config_dir[$k] = rtrim($v, '/\\') . DS; |
} |
$this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir); |
return $this; |
} |
/** |
* Add config directory(s) |
* |
* @param string|array $config_dir directory(s) of config sources |
* @param string key of the array element to assign the config dir to |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function addConfigDir($config_dir, $key=null) |
{ |
// make sure we're dealing with an array |
$this->config_dir = (array) $this->config_dir; |
if (is_array($config_dir)) { |
foreach ($config_dir as $k => $v) { |
if (is_int($k)) { |
// indexes are not merged but appended |
$this->config_dir[] = rtrim($v, '/\\') . DS; |
} else { |
// string indexes are overridden |
$this->config_dir[$k] = rtrim($v, '/\\') . DS; |
} |
} |
} elseif ($key !== null) { |
// override directory at specified index |
$this->config_dir[$key] = rtrim($config_dir, '/\\') . DS; |
} else { |
// append new directory |
$this->config_dir[] = rtrim($config_dir, '/\\') . DS; |
} |
$this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir); |
return $this; |
} |
/** |
* Get config directory |
* |
* @param mixed index of directory to get, null to get all |
* @return array|string configuration directory |
*/ |
public function getConfigDir($index=null) |
{ |
if ($index !== null) { |
return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null; |
} |
return (array) $this->config_dir; |
} |
/** |
* Set plugins directory |
* |
* @param string|array $plugins_dir directory(s) of plugins |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setPluginsDir($plugins_dir) |
{ |
$this->plugins_dir = array(); |
foreach ((array) $plugins_dir as $k => $v) { |
$this->plugins_dir[$k] = rtrim($v, '/\\') . DS; |
} |
return $this; |
} |
/** |
* Adds directory of plugin files |
* |
* @param object $smarty |
* @param string $ |array $ plugins folder |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function addPluginsDir($plugins_dir) |
{ |
// make sure we're dealing with an array |
$this->plugins_dir = (array) $this->plugins_dir; |
if (is_array($plugins_dir)) { |
foreach ($plugins_dir as $k => $v) { |
if (is_int($k)) { |
// indexes are not merged but appended |
$this->plugins_dir[] = rtrim($v, '/\\') . DS; |
} else { |
// string indexes are overridden |
$this->plugins_dir[$k] = rtrim($v, '/\\') . DS; |
} |
} |
} else { |
// append new directory |
$this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS; |
} |
$this->plugins_dir = array_unique($this->plugins_dir); |
return $this; |
} |
/** |
* Get plugin directories |
* |
* @return array list of plugin directories |
*/ |
public function getPluginsDir() |
{ |
return (array) $this->plugins_dir; |
} |
/** |
* Set compile directory |
* |
* @param string $compile_dir directory to store compiled templates in |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setCompileDir($compile_dir) |
{ |
$this->compile_dir = rtrim($compile_dir, '/\\') . DS; |
if (!isset(Plugin_Smarty_Smarty::$_muted_directories[$this->compile_dir])) { |
Plugin_Smarty_Smarty::$_muted_directories[$this->compile_dir] = null; |
} |
return $this; |
} |
/** |
* Get compiled directory |
* |
* @return string path to compiled templates |
*/ |
public function getCompileDir() |
{ |
return $this->compile_dir; |
} |
/** |
* Set cache directory |
* |
* @param string $cache_dir directory to store cached templates in |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setCacheDir($cache_dir) |
{ |
$this->cache_dir = rtrim($cache_dir, '/\\') . DS; |
if (!isset(Plugin_Smarty_Smarty::$_muted_directories[$this->cache_dir])) { |
Plugin_Smarty_Smarty::$_muted_directories[$this->cache_dir] = null; |
} |
return $this; |
} |
/** |
* Get cache directory |
* |
* @return string path of cache directory |
*/ |
public function getCacheDir() |
{ |
return $this->cache_dir; |
} |
/** |
* Set default modifiers |
* |
* @param array|string $modifiers modifier or list of modifiers to set |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setDefaultModifiers($modifiers) |
{ |
$this->default_modifiers = (array) $modifiers; |
return $this; |
} |
/** |
* Add default modifiers |
* |
* @param array|string $modifiers modifier or list of modifiers to add |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function addDefaultModifiers($modifiers) |
{ |
if (is_array($modifiers)) { |
$this->default_modifiers = array_merge($this->default_modifiers, $modifiers); |
} else { |
$this->default_modifiers[] = $modifiers; |
} |
return $this; |
} |
/** |
* Get default modifiers |
* |
* @return array list of default modifiers |
*/ |
public function getDefaultModifiers() |
{ |
return $this->default_modifiers; |
} |
/** |
* Set autoload filters |
* |
* @param array $filters filters to load automatically |
* @param string $type "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function setAutoloadFilters($filters, $type=null) |
{ |
if ($type !== null) { |
$this->autoload_filters[$type] = (array) $filters; |
} else { |
$this->autoload_filters = (array) $filters; |
} |
return $this; |
} |
/** |
* Add autoload filters |
* |
* @param array $filters filters to load automatically |
* @param string $type "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
*/ |
public function addAutoloadFilters($filters, $type=null) |
{ |
if ($type !== null) { |
if (!empty($this->autoload_filters[$type])) { |
$this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters); |
} else { |
$this->autoload_filters[$type] = (array) $filters; |
} |
} else { |
foreach ((array) $filters as $key => $value) { |
if (!empty($this->autoload_filters[$key])) { |
$this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value); |
} else { |
$this->autoload_filters[$key] = (array) $value; |
} |
} |
} |
return $this; |
} |
/** |
* Get autoload filters |
* |
* @param string $type type of filter to get autoloads for. Defaults to all autoload filters |
* @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified |
*/ |
public function getAutoloadFilters($type=null) |
{ |
if ($type !== null) { |
return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array(); |
} |
return $this->autoload_filters; |
} |
/** |
* return name of debugging template |
* |
* @return string |
*/ |
public function getDebugTemplate() |
{ |
return $this->debug_tpl; |
} |
/** |
* set the debug template |
* |
* @param string $tpl_name |
* @return Plugin_Smarty_Smarty current Smarty instance for chaining |
* @throws Plugin_Smarty_Exception if file is not readable |
*/ |
public function setDebugTemplate($tpl_name) |
{ |
if (!is_readable($tpl_name)) { |
throw new Plugin_Smarty_Exception("Unknown file '{$tpl_name}'"); |
} |
$this->debug_tpl = $tpl_name; |
return $this; |
} |
/** |
* creates a template object |
* |
* @param string $template the resource handle of the template file |
* @param mixed $cache_id cache id to be used with this template |
* @param mixed $compile_id compile id to be used with this template |
* @param object $parent next higher level of Smarty variables |
* @param boolean $do_clone flag is Smarty object shall be cloned |
* @return object template object |
*/ |
public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true) |
{ |
if (!empty($cache_id) && (is_object($cache_id) || is_array($cache_id))) { |
$parent = $cache_id; |
$cache_id = null; |
} |
if (!empty($parent) && is_array($parent)) { |
$data = $parent; |
$parent = null; |
} else { |
$data = null; |
} |
// default to cache_id and compile_id of Smarty object |
$cache_id = $cache_id === null ? $this->cache_id : $cache_id; |
$compile_id = $compile_id === null ? $this->compile_id : $compile_id; |
// already in template cache? |
if ($this->allow_ambiguous_resources) { |
$_templateId = Plugin_Smarty_Resource::getUniqueTemplateName($this, $template) . $cache_id . $compile_id; |
} else { |
$_templateId = $this->joined_template_dir . '#' . $template . $cache_id . $compile_id; |
} |
if (isset($_templateId[150])) { |
$_templateId = sha1($_templateId); |
} |
if ($do_clone) { |
if (isset($this->template_objects[$_templateId])) { |
// return cached template object |
$tpl = clone $this->template_objects[$_templateId]; |
$tpl->smarty = clone $tpl->smarty; |
$tpl->parent = $parent; |
$tpl->tpl_vars = array(); |
$tpl->config_vars = array(); |
} else { |
$tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id); |
} |
} else { |
if (isset($this->template_objects[$_templateId])) { |
// return cached template object |
$tpl = $this->template_objects[$_templateId]; |
$tpl->parent = $parent; |
$tpl->tpl_vars = array(); |
$tpl->config_vars = array(); |
} else { |
$tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id); |
} |
} |
// fill data if present |
if (!empty($data) && is_array($data)) { |
// set up variable values |
foreach ($data as $_key => $_val) { |
$tpl->tpl_vars[$_key] = new Plugin_Smarty_Variable($_val); |
} |
} |
return $tpl; |
} |
/** |
* Takes unknown classes and loads plugin files for them |
* class name format: Smarty_PluginType_PluginName |
* plugin filename format: plugintype.pluginname.php |
* |
* @param string $plugin_name class plugin name to load |
* @param bool $check check if already loaded |
* @return string |boolean filepath of loaded file or false |
*/ |
public function loadPlugin($plugin_name, $check = true) |
{ |
// if function or class exists, exit silently (already loaded) |
if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) { |
return true; |
} |
// Plugin name is expected to be: Smarty_[Type]_[Name] |
$_name_parts = explode('_', $plugin_name, 3); |
// class name must have three parts to be valid plugin |
// count($_name_parts) < 3 === !isset($_name_parts[2]) |
if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') { |
throw new Plugin_Smarty_Exception("plugin {$plugin_name} is not a valid name format"); |
return false; |
} |
// if type is "internal", get plugin from sysplugins |
if (strtolower($_name_parts[1]) == 'internal') { |
$file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php'; |
if (file_exists($file)) { |
require_once($file); |
return $file; |
} else { |
return false; |
} |
} |
// plugin filename is expected to be: [type].[name].php |
$_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php"; |
$_stream_resolve_include_path = function_exists('stream_resolve_include_path'); |
// loop through plugin dirs and find the plugin |
foreach ($this->getPluginsDir() as $_plugin_dir) { |
$names = array( |
$_plugin_dir . $_plugin_filename, |
$_plugin_dir . strtolower($_plugin_filename), |
); |
foreach ($names as $file) { |
if (file_exists($file)) { |
require_once($file); |
return $file; |
} |
if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) { |
// try PHP include_path |
if ($_stream_resolve_include_path) { |
$file = stream_resolve_include_path($file); |
} else { |
$file = Smarty_Internal_Get_Include_Path::getIncludePath($file); |
} |
if ($file !== false) { |
require_once($file); |
return $file; |
} |
} |
} |
} |
// no plugin loaded |
return false; |
} |
/** |
* Compile all template files |
* |
* @param string $extension file extension |
* @param bool $force_compile force all to recompile |
* @param int $time_limit |
* @param int $max_errors |
* @return integer number of template files recompiled |
*/ |
public function compileAllTemplates($extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null) |
{ |
return Smarty_Internal_Utility::compileAllTemplates($extension, $force_compile, $time_limit, $max_errors, $this); |
} |
/** |
* Compile all config files |
* |
* @param string $extension file extension |
* @param bool $force_compile force all to recompile |
* @param int $time_limit |
* @param int $max_errors |
* @return integer number of template files recompiled |
*/ |
public function compileAllConfig($extension = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null) |
{ |
return Smarty_Internal_Utility::compileAllConfig($extension, $force_compile, $time_limit, $max_errors, $this); |
} |
/** |
* Delete compiled template file |
* |
* @param string $resource_name template name |
* @param string $compile_id compile id |
* @param integer $exp_time expiration time |
* @return integer number of template files deleted |
*/ |
public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null) |
{ |
return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this); |
} |
/** |
* Return array of tag/attributes of all tags used by an template |
* |
* @param object $templae template object |
* @return array of tag/attributes |
*/ |
public function getTags(Plugin_Smarty_InternalTemplate $template) |
{ |
return Smarty_Internal_Utility::getTags($template); |
} |
/** |
* Run installation test |
* |
* @param array $errors Array to write errors into, rather than outputting them |
* @return boolean true if setup is fine, false if something is wrong |
*/ |
public function testInstall(&$errors=null) |
{ |
return Smarty_Internal_Utility::testInstall($this, $errors); |
} |
/** |
* Error Handler to mute expected messages |
* |
* @link http://php.net/set_error_handler |
* @param integer $errno Error level |
* @return boolean |
*/ |
public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext) |
{ |
$_is_muted_directory = false; |
// add the SMARTY_DIR to the list of muted directories |
if (!isset(Plugin_Smarty_Smarty::$_muted_directories[SMARTY_DIR])) { |
$smarty_dir = realpath(SMARTY_DIR); |
if ($smarty_dir !== false) { |
Plugin_Smarty_Smarty::$_muted_directories[SMARTY_DIR] = array( |
'file' => $smarty_dir, |
'length' => strlen($smarty_dir), |
); |
} |
} |
// walk the muted directories and test against $errfile |
foreach (Plugin_Smarty_Smarty::$_muted_directories as $key => &$dir) { |
if (!$dir) { |
// resolve directory and length for speedy comparisons |
$file = realpath($key); |
if ($file === false) { |
// this directory does not exist, remove and skip it |
unset(Plugin_Smarty_Smarty::$_muted_directories[$key]); |
continue; |
} |
$dir = array( |
'file' => $file, |
'length' => strlen($file), |
); |
} |
if (!strncmp($errfile, $dir['file'], $dir['length'])) { |
$_is_muted_directory = true; |
break; |
} |
} |
// pass to next error handler if this error did not occur inside SMARTY_DIR |
// or the error was within smarty but masked to be ignored |
if (!$_is_muted_directory || ($errno && $errno & error_reporting())) { |
if (Plugin_Smarty_Smarty::$_previous_error_handler) { |
return call_user_func(Plugin_Smarty_Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext); |
} else { |
return false; |
} |
} |
} |
/** |
* Enable error handler to mute expected messages |
* |
* @return void |
*/ |
public static function muteExpectedErrors() |
{ |
/* |
error muting is done because some people implemented custom error_handlers using |
http://php.net/set_error_handler and for some reason did not understand the following paragraph: |
It is important to remember that the standard PHP error handler is completely bypassed for the |
error types specified by error_types unless the callback function returns FALSE. |
error_reporting() settings will have no effect and your error handler will be called regardless - |
however you are still able to read the current value of error_reporting and act appropriately. |
Of particular note is that this value will be 0 if the statement that caused the error was |
prepended by the @ error-control operator. |
Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include |
- @filemtime() is almost twice as fast as using an additional file_exists() |
- between file_exists() and filemtime() a possible race condition is opened, |
which does not exist using the simple @filemtime() approach. |
*/ |
$error_handler = array('Smarty', 'mutingErrorHandler'); |
$previous = set_error_handler($error_handler); |
// avoid dead loops |
if ($previous !== $error_handler) { |
Plugin_Smarty_Smarty::$_previous_error_handler = $previous; |
} |
} |
/** |
* Disable error handler muting expected messages |
* |
* @return void |
*/ |
public static function unmuteExpectedErrors() |
{ |
restore_error_handler(); |
} |
} |
// Check if we're running on windows |
Plugin_Smarty_Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'; |
// let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8 |
if (Plugin_Smarty_Smarty::$_CHARSET !== 'UTF-8') { |
Plugin_Smarty_Smarty::$_UTF8_MODIFIER = ''; |
} |
/** |
* Smarty compiler exception class |
* @package Smarty |
*/ |
class Plugin_SmartyCompilerException extends Plugin_Smarty_Exception |
{ |
public function __toString() |
{ |
return ' --> Smarty Compiler: ' . $this->message . ' <-- '; |
} |
/** |
* The line number of the template error |
* @type int|null |
*/ |
public $line = null; |
/** |
* The template source snippet relating to the error |
* @type string|null |
*/ |
public $source = null; |
/** |
* The raw text of the error message |
* @type string|null |
*/ |
public $desc = null; |
/** |
* The resource identifier or template name |
* @type string|null |
*/ |
public $template = null; |
} |
/trunk/classes/internalcompilesectionelse.php |
---|
New file |
0,0 → 1,28 |
<?php |
/** |
* Smarty Internal Plugin Compile Sectionelse Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileSectionelse extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {sectionelse} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
list($openTag, $nocache) = $this->closeTag($compiler, array('section')); |
$this->openTag($compiler, 'sectionelse', array('sectionelse', $nocache)); |
return "<?php endfor; else: ?>"; |
} |
} |
/trunk/classes/variable.php |
---|
New file |
0,0 → 1,56 |
<?php |
/** |
* class for the Smarty variable object |
* |
* This class defines the Smarty variable object |
* |
* @package Smarty |
* @subpackage Template |
*/ |
class Plugin_Smarty_Variable |
{ |
/** |
* template variable |
* |
* @var mixed |
*/ |
public $value = null; |
/** |
* if true any output of this variable will be not cached |
* |
* @var boolean |
*/ |
public $nocache = false; |
/** |
* the scope the variable will have (local,parent or root) |
* |
* @var int |
*/ |
public $scope = Plugin_Smarty_Smarty::SCOPE_LOCAL; |
/** |
* create Smarty variable object |
* |
* @param mixed $value the value to assign |
* @param boolean $nocache if true any output of this variable will be not cached |
* @param int $scope the scope the variable will have (local,parent or root) |
*/ |
public function __construct($value = null, $nocache = false, $scope = Plugin_Smarty_Smarty::SCOPE_LOCAL) |
{ |
$this->value = $value; |
$this->nocache = $nocache; |
$this->scope = $scope; |
} |
/** |
* <<magic>> String conversion |
* |
* @return string |
*/ |
public function __toString() |
{ |
return (string) $this->value; |
} |
} |
/trunk/classes/configsource.php |
---|
New file |
0,0 → 1,94 |
<?php |
/** |
* Smarty Internal Plugin |
* |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
/** |
* Smarty Resource Data Object |
* |
* Meta Data Container for Config Files |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Rodney Rehm |
* |
* @property string $content |
* @property int $timestamp |
* @property bool $exists |
*/ |
class Plugin_Smarty_ConfigSource extends Plugin_Smarty_TemplateSource |
{ |
/** |
* create Config Object container |
* |
* @param Plugin_Smarty_Resource $handler Resource Handler this source object communicates with |
* @param Plugin_Smarty_Smarty $smarty Smarty instance this source object belongs to |
* @param string $resource full config_resource |
* @param string $type type of resource |
* @param string $name resource name |
* @param string $unique_resource unqiue resource name |
*/ |
public function __construct(Plugin_Smarty_Resource $handler, Plugin_Smarty_Smarty $smarty, $resource, $type, $name, $unique_resource) |
{ |
$this->handler = $handler; // Note: prone to circular references |
// Note: these may be ->config_compiler_class etc in the future |
//$this->config_compiler_class = $handler->config_compiler_class; |
//$this->config_lexer_class = $handler->config_lexer_class; |
//$this->config_parser_class = $handler->config_parser_class; |
$this->smarty = $smarty; |
$this->resource = $resource; |
$this->type = $type; |
$this->name = $name; |
$this->unique_resource = $unique_resource; |
} |
/** |
* <<magic>> Generic setter. |
* |
* @param string $property_name valid: content, timestamp, exists |
* @param mixed $value newly assigned value (not check for correct type) |
* @throws Plugin_Smarty_Exception when the given property name is not valid |
*/ |
public function __set($property_name, $value) |
{ |
switch ($property_name) { |
case 'content': |
case 'timestamp': |
case 'exists': |
$this->$property_name = $value; |
break; |
default: |
throw new Plugin_Smarty_Exception("invalid config property '$property_name'."); |
} |
} |
/** |
* <<magic>> Generic getter. |
* |
* @param string $property_name valid: content, timestamp, exists |
* @throws Plugin_Smarty_Exception when the given property name is not valid |
*/ |
public function __get($property_name) |
{ |
switch ($property_name) { |
case 'timestamp': |
case 'exists': |
$this->handler->populateTimestamp($this); |
return $this->$property_name; |
case 'content': |
return $this->content = $this->handler->getContent($this); |
default: |
throw new Plugin_Smarty_Exception("config property '$property_name' does not exist."); |
} |
} |
} |
/trunk/classes/SmartyBC.class.php |
---|
New file |
0,0 → 1,459 |
<?php |
/** |
* Project: Smarty: the PHP compiling template engine |
* File: SmartyBC.class.php |
* SVN: $Id: $ |
* |
* This library is free software; you can redistribute it and/or |
* modify it under the terms of the GNU Lesser General Public |
* License as published by the Free Software Foundation; either |
* version 2.1 of the License, or (at your option) any later version. |
* |
* This library is distributed in the hope that it will be useful, |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
* Lesser General Public License for more details. |
* |
* You should have received a copy of the GNU Lesser General Public |
* License along with this library; if not, write to the Free Software |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
* |
* For questions, help, comments, discussion, etc., please join the |
* Smarty mailing list. Send a blank e-mail to |
* smarty-discussion-subscribe@googlegroups.com |
* |
* @link http://www.smarty.net/ |
* @copyright 2008 New Digital Group, Inc. |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Uwe Tews |
* @author Rodney Rehm |
* @package Smarty |
*/ |
/** |
* @ignore |
*/ |
require(dirname(__FILE__) . '/Smarty.class.php'); |
/** |
* Smarty Backward Compatability Wrapper Class |
* |
* @package Smarty |
*/ |
class Plugin_SmartyBC extends Smarty |
{ |
/** |
* Smarty 2 BC |
* @var string |
*/ |
public $_version = self::SMARTY_VERSION; |
/** |
* Initialize new SmartyBC object |
* |
* @param array $options options to set during initialization, e.g. array( 'forceCompile' => false ) |
*/ |
public function __construct(array $options=array()) |
{ |
parent::__construct($options); |
// register {php} tag |
$this->registerPlugin('block', 'php', 'smarty_php_tag'); |
} |
/** |
* wrapper for assign_by_ref |
* |
* @param string $tpl_var the template variable name |
* @param mixed &$value the referenced value to assign |
*/ |
public function assign_by_ref($tpl_var, &$value) |
{ |
$this->assignByRef($tpl_var, $value); |
} |
/** |
* wrapper for append_by_ref |
* |
* @param string $tpl_var the template variable name |
* @param mixed &$value the referenced value to append |
* @param boolean $merge flag if array elements shall be merged |
*/ |
public function append_by_ref($tpl_var, &$value, $merge = false) |
{ |
$this->appendByRef($tpl_var, $value, $merge); |
} |
/** |
* clear the given assigned template variable. |
* |
* @param string $tpl_var the template variable to clear |
*/ |
public function clear_assign($tpl_var) |
{ |
$this->clearAssign($tpl_var); |
} |
/** |
* Registers custom function to be used in templates |
* |
* @param string $function the name of the template function |
* @param string $function_impl the name of the PHP function to register |
* @param bool $cacheable |
* @param mixed $cache_attrs |
*/ |
public function register_function($function, $function_impl, $cacheable=true, $cache_attrs=null) |
{ |
$this->registerPlugin('function', $function, $function_impl, $cacheable, $cache_attrs); |
} |
/** |
* Unregisters custom function |
* |
* @param string $function name of template function |
*/ |
public function unregister_function($function) |
{ |
$this->unregisterPlugin('function', $function); |
} |
/** |
* Registers object to be used in templates |
* |
* @param string $object name of template object |
* @param object $object_impl the referenced PHP object to register |
* @param array $allowed list of allowed methods (empty = all) |
* @param boolean $smarty_args smarty argument format, else traditional |
* @param array $block_functs list of methods that are block format |
*/ |
public function register_object($object, $object_impl, $allowed = array(), $smarty_args = true, $block_methods = array()) |
{ |
settype($allowed, 'array'); |
settype($smarty_args, 'boolean'); |
$this->registerObject($object, $object_impl, $allowed, $smarty_args, $block_methods); |
} |
/** |
* Unregisters object |
* |
* @param string $object name of template object |
*/ |
public function unregister_object($object) |
{ |
$this->unregisterObject($object); |
} |
/** |
* Registers block function to be used in templates |
* |
* @param string $block name of template block |
* @param string $block_impl PHP function to register |
* @param bool $cacheable |
* @param mixed $cache_attrs |
*/ |
public function register_block($block, $block_impl, $cacheable=true, $cache_attrs=null) |
{ |
$this->registerPlugin('block', $block, $block_impl, $cacheable, $cache_attrs); |
} |
/** |
* Unregisters block function |
* |
* @param string $block name of template function |
*/ |
public function unregister_block($block) |
{ |
$this->unregisterPlugin('block', $block); |
} |
/** |
* Registers compiler function |
* |
* @param string $function name of template function |
* @param string $function_impl name of PHP function to register |
* @param bool $cacheable |
*/ |
public function register_compiler_function($function, $function_impl, $cacheable=true) |
{ |
$this->registerPlugin('compiler', $function, $function_impl, $cacheable); |
} |
/** |
* Unregisters compiler function |
* |
* @param string $function name of template function |
*/ |
public function unregister_compiler_function($function) |
{ |
$this->unregisterPlugin('compiler', $function); |
} |
/** |
* Registers modifier to be used in templates |
* |
* @param string $modifier name of template modifier |
* @param string $modifier_impl name of PHP function to register |
*/ |
public function register_modifier($modifier, $modifier_impl) |
{ |
$this->registerPlugin('modifier', $modifier, $modifier_impl); |
} |
/** |
* Unregisters modifier |
* |
* @param string $modifier name of template modifier |
*/ |
public function unregister_modifier($modifier) |
{ |
$this->unregisterPlugin('modifier', $modifier); |
} |
/** |
* Registers a resource to fetch a template |
* |
* @param string $type name of resource |
* @param array $functions array of functions to handle resource |
*/ |
public function register_resource($type, $functions) |
{ |
$this->registerResource($type, $functions); |
} |
/** |
* Unregisters a resource |
* |
* @param string $type name of resource |
*/ |
public function unregister_resource($type) |
{ |
$this->unregisterResource($type); |
} |
/** |
* Registers a prefilter function to apply |
* to a template before compiling |
* |
* @param callable $function |
*/ |
public function register_prefilter($function) |
{ |
$this->registerFilter('pre', $function); |
} |
/** |
* Unregisters a prefilter function |
* |
* @param callable $function |
*/ |
public function unregister_prefilter($function) |
{ |
$this->unregisterFilter('pre', $function); |
} |
/** |
* Registers a postfilter function to apply |
* to a compiled template after compilation |
* |
* @param callable $function |
*/ |
public function register_postfilter($function) |
{ |
$this->registerFilter('post', $function); |
} |
/** |
* Unregisters a postfilter function |
* |
* @param callable $function |
*/ |
public function unregister_postfilter($function) |
{ |
$this->unregisterFilter('post', $function); |
} |
/** |
* Registers an output filter function to apply |
* to a template output |
* |
* @param callable $function |
*/ |
public function register_outputfilter($function) |
{ |
$this->registerFilter('output', $function); |
} |
/** |
* Unregisters an outputfilter function |
* |
* @param callable $function |
*/ |
public function unregister_outputfilter($function) |
{ |
$this->unregisterFilter('output', $function); |
} |
/** |
* load a filter of specified type and name |
* |
* @param string $type filter type |
* @param string $name filter name |
*/ |
public function load_filter($type, $name) |
{ |
$this->loadFilter($type, $name); |
} |
/** |
* clear cached content for the given template and cache id |
* |
* @param string $tpl_file name of template file |
* @param string $cache_id name of cache_id |
* @param string $compile_id name of compile_id |
* @param string $exp_time expiration time |
* @return boolean |
*/ |
public function clear_cache($tpl_file = null, $cache_id = null, $compile_id = null, $exp_time = null) |
{ |
return $this->clearCache($tpl_file, $cache_id, $compile_id, $exp_time); |
} |
/** |
* clear the entire contents of cache (all templates) |
* |
* @param string $exp_time expire time |
* @return boolean |
*/ |
public function clear_all_cache($exp_time = null) |
{ |
return $this->clearCache(null, null, null, $exp_time); |
} |
/** |
* test to see if valid cache exists for this template |
* |
* @param string $tpl_file name of template file |
* @param string $cache_id |
* @param string $compile_id |
* @return boolean |
*/ |
public function is_cached($tpl_file, $cache_id = null, $compile_id = null) |
{ |
return $this->isCached($tpl_file, $cache_id, $compile_id); |
} |
/** |
* clear all the assigned template variables. |
*/ |
public function clear_all_assign() |
{ |
$this->clearAllAssign(); |
} |
/** |
* clears compiled version of specified template resource, |
* or all compiled template files if one is not specified. |
* This function is for advanced use only, not normally needed. |
* |
* @param string $tpl_file |
* @param string $compile_id |
* @param string $exp_time |
* @return boolean results of {@link smarty_core_rm_auto()} |
*/ |
public function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null) |
{ |
return $this->clearCompiledTemplate($tpl_file, $compile_id, $exp_time); |
} |
/** |
* Checks whether requested template exists. |
* |
* @param string $tpl_file |
* @return boolean |
*/ |
public function template_exists($tpl_file) |
{ |
return $this->templateExists($tpl_file); |
} |
/** |
* Returns an array containing template variables |
* |
* @param string $name |
* @return array |
*/ |
public function get_template_vars($name=null) |
{ |
return $this->getTemplateVars($name); |
} |
/** |
* Returns an array containing config variables |
* |
* @param string $name |
* @return array |
*/ |
public function get_config_vars($name=null) |
{ |
return $this->getConfigVars($name); |
} |
/** |
* load configuration values |
* |
* @param string $file |
* @param string $section |
* @param string $scope |
*/ |
public function config_load($file, $section = null, $scope = 'global') |
{ |
$this->ConfigLoad($file, $section, $scope); |
} |
/** |
* return a reference to a registered object |
* |
* @param string $name |
* @return object |
*/ |
public function get_registered_object($name) |
{ |
return $this->getRegisteredObject($name); |
} |
/** |
* clear configuration values |
* |
* @param string $var |
*/ |
public function clear_config($var = null) |
{ |
$this->clearConfig($var); |
} |
/** |
* trigger Smarty error |
* |
* @param string $error_msg |
* @param integer $error_type |
*/ |
public function trigger_error($error_msg, $error_type = E_USER_WARNING) |
{ |
trigger_error("Smarty error: $error_msg", $error_type); |
} |
} |
/** |
* Smarty {php}{/php} block function |
* |
* @param array $params parameter list |
* @param string $content contents of the block |
* @param object $template template object |
* @param boolean &$repeat repeat flag |
* @return string content re-formatted |
*/ |
function smarty_php_tag($params, $content, $template, &$repeat) |
{ |
eval($content); |
return ''; |
} |
/trunk/classes/internalresource_php.php |
---|
New file |
0,0 → 1,113 |
<?php |
/** |
* Smarty Internal Plugin Resource PHP |
* |
* Implements the file system as resource for PHP templates |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Uwe Tews |
* @author Rodney Rehm |
*/ |
class Plugin_Smarty_InternalResourcePHP extends Plugin_Smarty_ResourceUncompiled |
{ |
/** |
* container for short_open_tag directive's value before executing PHP templates |
* @var string |
*/ |
protected $short_open_tag; |
/** |
* Create a new PHP Resource |
* |
*/ |
public function __construct() |
{ |
$this->short_open_tag = ini_get( 'short_open_tag' ); |
} |
/** |
* populate Source Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populate(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template=null) |
{ |
$source->filepath = $this->buildFilepath($source, $_template); |
if ($source->filepath !== false) { |
if (is_object($source->smarty->security_policy)) { |
$source->smarty->security_policy->isTrustedResourceDir($source->filepath); |
} |
$source->uid = sha1($source->filepath); |
if ($source->smarty->compile_check) { |
$source->timestamp = @filemtime($source->filepath); |
$source->exists = !!$source->timestamp; |
} |
} |
} |
/** |
* populate Source Object with timestamp and exists from Resource |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return void |
*/ |
public function populateTimestamp(Plugin_Smarty_TemplateSource $source) |
{ |
$source->timestamp = @filemtime($source->filepath); |
$source->exists = !!$source->timestamp; |
} |
/** |
* Load template's source from file into current template object |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string template source |
* @throws Plugin_Smarty_Exception if source cannot be loaded |
*/ |
public function getContent(Plugin_Smarty_TemplateSource $source) |
{ |
if ($source->timestamp) { |
return ''; |
} |
throw new Plugin_Smarty_Exception("Unable to read template {$source->type} '{$source->name}'"); |
} |
/** |
* Render and output the template (without using the compiler) |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
* @throws Plugin_Smarty_Exception if template cannot be loaded or allow_php_templates is disabled |
*/ |
public function renderUncompiled(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template) |
{ |
$_smarty_template = $_template; |
if (!$source->smarty->allow_php_templates) { |
throw new Plugin_Smarty_Exception("PHP templates are disabled"); |
} |
if (!$source->exists) { |
if ($_template->parent instanceof Plugin_Smarty_InternalTemplate) { |
$parent_resource = " in '{$_template->parent->template_resource}'"; |
} else { |
$parent_resource = ''; |
} |
throw new Plugin_Smarty_Exception("Unable to load template {$source->type} '{$source->name}'{$parent_resource}"); |
} |
// prepare variables |
extract($_template->getTemplateVars()); |
// include PHP template with short open tags enabled |
ini_set( 'short_open_tag', '1' ); |
include($source->filepath); |
ini_set( 'short_open_tag', $this->short_open_tag ); |
} |
} |
/trunk/classes/plugins/function.html_image.php |
---|
New file |
0,0 → 1,161 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {html_image} function plugin |
* |
* Type: function<br> |
* Name: html_image<br> |
* Date: Feb 24, 2003<br> |
* Purpose: format HTML tags for the image<br> |
* Examples: {html_image file="/images/masthead.gif"}<br> |
* Output: <img src="/images/masthead.gif" width=400 height=23><br> |
* Params: |
* <pre> |
* - file - (required) - file (and path) of image |
* - height - (optional) - image height (default actual height) |
* - width - (optional) - image width (default actual width) |
* - basedir - (optional) - base directory for absolute paths, default is environment variable DOCUMENT_ROOT |
* - path_prefix - prefix for path output (optional, default empty) |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.html.image.php {html_image} |
* (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author credits to Duda <duda@big.hu> |
* @version 1.0 |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
* @uses smarty_function_escape_special_chars() |
*/ |
function smarty_function_html_image($params, $template) |
{ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
$alt = ''; |
$file = ''; |
$height = ''; |
$width = ''; |
$extra = ''; |
$prefix = ''; |
$suffix = ''; |
$path_prefix = ''; |
$basedir = isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : ''; |
foreach ($params as $_key => $_val) { |
switch ($_key) { |
case 'file': |
case 'height': |
case 'width': |
case 'dpi': |
case 'path_prefix': |
case 'basedir': |
$$_key = $_val; |
break; |
case 'alt': |
if (!is_array($_val)) { |
$$_key = smarty_function_escape_special_chars($_val); |
} else { |
throw new Plugin_Smarty_Exception ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
case 'link': |
case 'href': |
$prefix = '<a href="' . $_val . '">'; |
$suffix = '</a>'; |
break; |
default: |
if (!is_array($_val)) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; |
} else { |
throw new Plugin_Smarty_Exception ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
if (empty($file)) { |
trigger_error("html_image: missing 'file' parameter", E_USER_NOTICE); |
return; |
} |
if ($file[0] == '/') { |
$_image_path = $basedir . $file; |
} else { |
$_image_path = $file; |
} |
// strip file protocol |
if (stripos($params['file'], 'file://') === 0) { |
$params['file'] = substr($params['file'], 7); |
} |
$protocol = strpos($params['file'], '://'); |
if ($protocol !== false) { |
$protocol = strtolower(substr($params['file'], 0, $protocol)); |
} |
if (isset($template->smarty->security_policy)) { |
if ($protocol) { |
// remote resource (or php stream, …) |
if (!$template->smarty->security_policy->isTrustedUri($params['file'])) { |
return; |
} |
} else { |
// local file |
if (!$template->smarty->security_policy->isTrustedResourceDir($params['file'])) { |
return; |
} |
} |
} |
if (!isset($params['width']) || !isset($params['height'])) { |
// FIXME: (rodneyrehm) getimagesize() loads the complete file off a remote resource, use custom [jpg,png,gif]header reader! |
if (!$_image_data = @getimagesize($_image_path)) { |
if (!file_exists($_image_path)) { |
trigger_error("html_image: unable to find '$_image_path'", E_USER_NOTICE); |
return; |
} elseif (!is_readable($_image_path)) { |
trigger_error("html_image: unable to read '$_image_path'", E_USER_NOTICE); |
return; |
} else { |
trigger_error("html_image: '$_image_path' is not a valid image file", E_USER_NOTICE); |
return; |
} |
} |
if (!isset($params['width'])) { |
$width = $_image_data[0]; |
} |
if (!isset($params['height'])) { |
$height = $_image_data[1]; |
} |
} |
if (isset($params['dpi'])) { |
if (strstr($_SERVER['HTTP_USER_AGENT'], 'Mac')) { |
// FIXME: (rodneyrehm) wrong dpi assumption |
// don't know who thought this up… even if it was true in 1998, it's definitely wrong in 2011. |
$dpi_default = 72; |
} else { |
$dpi_default = 96; |
} |
$_resize = $dpi_default / $params['dpi']; |
$width = round($width * $_resize); |
$height = round($height * $_resize); |
} |
return $prefix . '<img src="' . $path_prefix . $file . '" alt="' . $alt . '" width="' . $width . '" height="' . $height . '"' . $extra . ' />' . $suffix; |
} |
/trunk/classes/plugins/modifier.spacify.php |
---|
New file |
0,0 → 1,25 |
<?php |
/** |
* Smarty plugin |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty spacify modifier plugin |
* |
* Type: modifier<br> |
* Name: spacify<br> |
* Purpose: add spaces between characters in a string |
* |
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string input string |
* @param string $spacify_char string to insert between characters. |
* @return string |
*/ |
function smarty_modifier_spacify($string, $spacify_char = ' ') |
{ |
// well… what about charsets besides latin and UTF-8? |
return implode($spacify_char, preg_split('//' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $string, -1, PREG_SPLIT_NO_EMPTY)); |
} |
/trunk/classes/plugins/modifiercompiler.unescape.php |
---|
New file |
0,0 → 1,49 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty unescape modifier plugin |
* |
* Type: modifier<br> |
* Name: unescape<br> |
* Purpose: unescape html entities |
* |
* @author Rodney Rehm |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_unescape($params, $compiler) |
{ |
if (!isset($params[1])) { |
$params[1] = 'html'; |
} |
if (!isset($params[2])) { |
$params[2] = '\'' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '\''; |
} else { |
$params[2] = "'" . $params[2] . "'"; |
} |
switch (trim($params[1], '"\'')) { |
case 'entity': |
case 'htmlall': |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
return 'mb_convert_encoding(' . $params[0] . ', ' . $params[2] . ', \'HTML-ENTITIES\')'; |
} |
return 'html_entity_decode(' . $params[0] . ', ENT_NOQUOTES, ' . $params[2] . ')'; |
case 'html': |
return 'htmlspecialchars_decode(' . $params[0] . ', ENT_QUOTES)'; |
case 'url': |
return 'rawurldecode(' . $params[0] . ')'; |
default: |
return $params[0]; |
} |
} |
/trunk/classes/plugins/modifier.escape.php |
---|
New file |
0,0 → 1,197 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty escape modifier plugin |
* |
* Type: modifier<br> |
* Name: escape<br> |
* Purpose: escape string for output |
* |
* @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string input string |
* @param string $esc_type escape type |
* @param string $char_set character set, used for htmlspecialchars() or htmlentities() |
* @param boolean $double_encode encode already encoded entitites again, used for htmlspecialchars() or htmlentities() |
* @return string escaped input string |
*/ |
function smarty_modifier_escape($string, $esc_type = 'html', $char_set = null, $double_encode = true) |
{ |
static $_double_encode = null; |
if ($_double_encode === null) { |
$_double_encode = version_compare(PHP_VERSION, '5.2.3', '>='); |
} |
if (!$char_set) { |
$char_set = Plugin_Smarty_Smarty::$_CHARSET; |
} |
switch ($esc_type) { |
case 'html': |
if ($_double_encode) { |
// php >=5.3.2 - go native |
return htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode); |
} else { |
if ($double_encode) { |
// php <5.2.3 - only handle double encoding |
return htmlspecialchars($string, ENT_QUOTES, $char_set); |
} else { |
// php <5.2.3 - prevent double encoding |
$string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); |
$string = htmlspecialchars($string, ENT_QUOTES, $char_set); |
$string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); |
return $string; |
} |
} |
case 'htmlall': |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
// mb_convert_encoding ignores htmlspecialchars() |
if ($_double_encode) { |
// php >=5.3.2 - go native |
$string = htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode); |
} else { |
if ($double_encode) { |
// php <5.2.3 - only handle double encoding |
$string = htmlspecialchars($string, ENT_QUOTES, $char_set); |
} else { |
// php <5.2.3 - prevent double encoding |
$string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); |
$string = htmlspecialchars($string, ENT_QUOTES, $char_set); |
$string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); |
return $string; |
} |
} |
// htmlentities() won't convert everything, so use mb_convert_encoding |
return mb_convert_encoding($string, 'HTML-ENTITIES', $char_set); |
} |
// no MBString fallback |
if ($_double_encode) { |
return htmlentities($string, ENT_QUOTES, $char_set, $double_encode); |
} else { |
if ($double_encode) { |
return htmlentities($string, ENT_QUOTES, $char_set); |
} else { |
$string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); |
$string = htmlentities($string, ENT_QUOTES, $char_set); |
$string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); |
return $string; |
} |
} |
case 'url': |
return rawurlencode($string); |
case 'urlpathinfo': |
return str_replace('%2F', '/', rawurlencode($string)); |
case 'quotes': |
// escape unescaped single quotes |
return preg_replace("%(?<!\\\\)'%", "\\'", $string); |
case 'hex': |
// escape every byte into hex |
// Note that the UTF-8 encoded character ä will be represented as %c3%a4 |
$return = ''; |
$_length = strlen($string); |
for ($x = 0; $x < $_length; $x++) { |
$return .= '%' . bin2hex($string[$x]); |
} |
return $return; |
case 'hexentity': |
$return = ''; |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); |
$return = ''; |
foreach (smarty_mb_to_unicode($string, Plugin_Smarty_Smarty::$_CHARSET) as $unicode) { |
$return .= '&#x' . strtoupper(dechex($unicode)) . ';'; |
} |
return $return; |
} |
// no MBString fallback |
$_length = strlen($string); |
for ($x = 0; $x < $_length; $x++) { |
$return .= '&#x' . bin2hex($string[$x]) . ';'; |
} |
return $return; |
case 'decentity': |
$return = ''; |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); |
$return = ''; |
foreach (smarty_mb_to_unicode($string, Plugin_Smarty_Smarty::$_CHARSET) as $unicode) { |
$return .= '&#' . $unicode . ';'; |
} |
return $return; |
} |
// no MBString fallback |
$_length = strlen($string); |
for ($x = 0; $x < $_length; $x++) { |
$return .= '&#' . ord($string[$x]) . ';'; |
} |
return $return; |
case 'javascript': |
// escape quotes and backslashes, newlines, etc. |
return strtr($string, array('\\' => '\\\\', "'" => "\\'", '"' => '\\"', "\r" => '\\r', "\n" => '\\n', '</' => '<\/')); |
case 'mail': |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php'); |
return smarty_mb_str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); |
} |
// no MBString fallback |
return str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); |
case 'nonstd': |
// escape non-standard chars, such as ms document quotes |
$return = ''; |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); |
foreach (smarty_mb_to_unicode($string, Plugin_Smarty_Smarty::$_CHARSET) as $unicode) { |
if ($unicode >= 126) { |
$return .= '&#' . $unicode . ';'; |
} else { |
$return .= chr($unicode); |
} |
} |
return $return; |
} |
$_length = strlen($string); |
for ($_i = 0; $_i < $_length; $_i++) { |
$_ord = ord(substr($string, $_i, 1)); |
// non-standard char, escape it |
if ($_ord >= 126) { |
$return .= '&#' . $_ord . ';'; |
} else { |
$return .= substr($string, $_i, 1); |
} |
} |
return $return; |
default: |
return $string; |
} |
} |
/trunk/classes/plugins/modifier.debug_print_var.php |
---|
New file |
0,0 → 1,103 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage Debug |
*/ |
/** |
* Smarty debug_print_var modifier plugin |
* |
* Type: modifier<br> |
* Name: debug_print_var<br> |
* Purpose: formats variable contents for display in the console |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param array|object $var variable to be formatted |
* @param integer $depth maximum recursion depth if $var is an array |
* @param integer $length maximum string length if $var is a string |
* @return string |
*/ |
function smarty_modifier_debug_print_var ($var, $depth = 0, $length = 40) |
{ |
$_replace = array("\n" => '<i>\n</i>', |
"\r" => '<i>\r</i>', |
"\t" => '<i>\t</i>' |
); |
switch (gettype($var)) { |
case 'array' : |
$results = '<b>Array (' . count($var) . ')</b>'; |
foreach ($var as $curr_key => $curr_val) { |
$results .= '<br>' . str_repeat(' ', $depth * 2) |
. '<b>' . strtr($curr_key, $_replace) . '</b> => ' |
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length); |
$depth--; |
} |
break; |
case 'object' : |
$object_vars = get_object_vars($var); |
$results = '<b>' . get_class($var) . ' Object (' . count($object_vars) . ')</b>'; |
foreach ($object_vars as $curr_key => $curr_val) { |
$results .= '<br>' . str_repeat(' ', $depth * 2) |
. '<b> ->' . strtr($curr_key, $_replace) . '</b> = ' |
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length); |
$depth--; |
} |
break; |
case 'boolean' : |
case 'NULL' : |
case 'resource' : |
if (true === $var) { |
$results = 'true'; |
} elseif (false === $var) { |
$results = 'false'; |
} elseif (null === $var) { |
$results = 'null'; |
} else { |
$results = htmlspecialchars((string) $var); |
} |
$results = '<i>' . $results . '</i>'; |
break; |
case 'integer' : |
case 'float' : |
$results = htmlspecialchars((string) $var); |
break; |
case 'string' : |
$results = strtr($var, $_replace); |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if (mb_strlen($var, Plugin_Smarty_Smarty::$_CHARSET) > $length) { |
$results = mb_substr($var, 0, $length - 3, Plugin_Smarty_Smarty::$_CHARSET) . '...'; |
} |
} else { |
if (isset($var[$length])) { |
$results = substr($var, 0, $length - 3) . '...'; |
} |
} |
$results = htmlspecialchars('"' . $results . '"'); |
break; |
case 'unknown type' : |
default : |
$results = strtr((string) $var, $_replace); |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if (mb_strlen($results, Plugin_Smarty_Smarty::$_CHARSET) > $length) { |
$results = mb_substr($results, 0, $length - 3, Plugin_Smarty_Smarty::$_CHARSET) . '...'; |
} |
} else { |
if (strlen($results) > $length) { |
$results = substr($results, 0, $length - 3) . '...'; |
} |
} |
$results = htmlspecialchars($results); |
} |
return $results; |
} |
/trunk/classes/plugins/modifiercompiler.strip_tags.php |
---|
New file |
0,0 → 1,28 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty strip_tags modifier plugin |
* |
* Type: modifier<br> |
* Name: strip_tags<br> |
* Purpose: strip html tags from text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.strip.tags.php strip_tags (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_strip_tags($params, $compiler) |
{ |
if (!isset($params[1]) || $params[1] === true || trim($params[1],'"') == 'true') { |
return "preg_replace('!<[^>]*?>!', ' ', {$params[0]})"; |
} else { |
return 'strip_tags(' . $params[0] . ')'; |
} |
} |
/trunk/classes/plugins/modifier.replace.php |
---|
New file |
0,0 → 1,32 |
<?php |
/** |
* Smarty plugin |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty replace modifier plugin |
* |
* Type: modifier<br> |
* Name: replace<br> |
* Purpose: simple search/replace |
* |
* @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Uwe Tews |
* @param string $string input string |
* @param string $search text to search for |
* @param string $replace replacement text |
* @return string |
*/ |
function smarty_modifier_replace($string, $search, $replace) |
{ |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php'); |
return smarty_mb_str_replace($search, $replace, $string); |
} |
return str_replace($search, $replace, $string); |
} |
/trunk/classes/plugins/shared.mb_unicode.php |
---|
New file |
0,0 → 1,50 |
<?php |
/** |
* Smarty shared plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
/** |
* convert characters to their decimal unicode equivalents |
* |
* @link http://www.ibm.com/developerworks/library/os-php-unicode/index.html#listing3 for inspiration |
* @param string $string characters to calculate unicode of |
* @param string $encoding encoding of $string, if null mb_internal_encoding() is used |
* @return array sequence of unicodes |
* @author Rodney Rehm |
*/ |
function smarty_mb_to_unicode($string, $encoding=null) |
{ |
if ($encoding) { |
$expanded = mb_convert_encoding($string, "UTF-32BE", $encoding); |
} else { |
$expanded = mb_convert_encoding($string, "UTF-32BE"); |
} |
return unpack("N*", $expanded); |
} |
/** |
* convert unicodes to the character of given encoding |
* |
* @link http://www.ibm.com/developerworks/library/os-php-unicode/index.html#listing3 for inspiration |
* @param integer|array $unicode single unicode or list of unicodes to convert |
* @param string $encoding encoding of returned string, if null mb_internal_encoding() is used |
* @return string unicode as character sequence in given $encoding |
* @author Rodney Rehm |
*/ |
function smarty_mb_from_unicode($unicode, $encoding=null) |
{ |
$t = ''; |
if (!$encoding) { |
$encoding = mb_internal_encoding(); |
} |
foreach ((array) $unicode as $utf32be) { |
$character = pack("N*", $utf32be); |
$t .= mb_convert_encoding($character, $encoding, "UTF-32BE"); |
} |
return $t; |
} |
/trunk/classes/plugins/shared.literal_compiler_param.php |
---|
New file |
0,0 → 1,34 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
/** |
* evaluate compiler parameter |
* |
* @param array $params parameter array as given to the compiler function |
* @param integer $index array index of the parameter to convert |
* @param mixed $default value to be returned if the parameter is not present |
* @return mixed evaluated value of parameter or $default |
* @throws Plugin_Smarty_Exception if parameter is not a literal (but an expression, variable, …) |
* @author Rodney Rehm |
*/ |
function smarty_literal_compiler_param($params, $index, $default=null) |
{ |
// not set, go default |
if (!isset($params[$index])) { |
return $default; |
} |
// test if param is a literal |
if (!preg_match('/^([\'"]?)[a-zA-Z0-9]+(\\1)$/', $params[$index])) { |
throw new Plugin_Smarty_Exception('$param[' . $index . '] is not a literal and is thus not evaluatable at compile time'); |
} |
$t = null; |
eval("\$t = " . $params[$index] . ";"); |
return $t; |
} |
/trunk/classes/plugins/modifiercompiler.count_characters.php |
---|
New file |
0,0 → 1,31 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty count_characters modifier plugin |
* |
* Type: modifier<br> |
* Name: count_characteres<br> |
* Purpose: count the number of characters in a text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_count_characters($params, $compiler) |
{ |
if (!isset($params[1]) || $params[1] != 'true') { |
return 'preg_match_all(\'/[^\s]/' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER . '\',' . $params[0] . ', $tmp)'; |
} |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
return 'mb_strlen(' . $params[0] . ', \'' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '\')'; |
} |
// no MBString fallback |
return 'strlen(' . $params[0] . ')'; |
} |
/trunk/classes/plugins/variablefilter.htmlspecialchars.php |
---|
New file |
0,0 → 1,19 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFilter |
*/ |
/** |
* Smarty htmlspecialchars variablefilter plugin |
* |
* @param string $source input string |
* @param Plugin_Smarty_InternalTemplate $smarty Smarty object |
* @return string filtered output |
*/ |
function smarty_variablefilter_htmlspecialchars($source, $smarty) |
{ |
return htmlspecialchars($source, ENT_QUOTES, Plugin_Smarty_Smarty::$_CHARSET); |
} |
/trunk/classes/plugins/modifier.capitalize.php |
---|
New file |
0,0 → 1,87 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty capitalize modifier plugin |
* |
* Type: modifier<br> |
* Name: capitalize<br> |
* Purpose: capitalize words in the string |
* |
* {@internal {$string|capitalize:true:true} is the fastest option for MBString enabled systems }} |
* |
* @param string $string string to capitalize |
* @param boolean $uc_digits also capitalize "x123" to "X123" |
* @param boolean $lc_rest capitalize first letters, lowercase all following letters "aAa" to "Aaa" |
* @return string capitalized string |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Rodney Rehm |
*/ |
function smarty_modifier_capitalize($string, $uc_digits = false, $lc_rest = false) |
{ |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if ($lc_rest) { |
// uppercase (including hyphenated words) |
$upper_string = mb_convert_case( $string, MB_CASE_TITLE, Plugin_Smarty_Smarty::$_CHARSET ); |
} else { |
// uppercase word breaks |
$upper_string = preg_replace_callback("!(^|[^\p{L}'])([\p{Ll}])!S" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_mbconvert_cb', $string); |
} |
// check uc_digits case |
if (!$uc_digits) { |
if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $string, $matches, PREG_OFFSET_CAPTURE)) { |
foreach($matches[1] as $match) { |
$upper_string = substr_replace($upper_string, mb_strtolower($match[0], Plugin_Smarty_Smarty::$_CHARSET), $match[1], strlen($match[0])); |
} |
} |
} |
$upper_string = preg_replace_callback("!((^|\s)['\"])(\w)!" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_mbconvert2_cb', $upper_string); |
return $upper_string; |
} |
// lowercase first |
if ($lc_rest) { |
$string = strtolower($string); |
} |
// uppercase (including hyphenated words) |
$upper_string = preg_replace_callback("!(^|[^\p{L}'])([\p{Ll}])!S" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_ucfirst_cb', $string); |
// check uc_digits case |
if (!$uc_digits) { |
if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $string, $matches, PREG_OFFSET_CAPTURE)) { |
foreach($matches[1] as $match) { |
$upper_string = substr_replace($upper_string, strtolower($match[0]), $match[1], strlen($match[0])); |
} |
} |
} |
$upper_string = preg_replace_callback("!((^|\s)['\"])(\w)!" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_ucfirst2_cb', $upper_string); |
return $upper_string; |
} |
/* |
* |
* Bug: create_function() use exhausts memory when used in long loops |
* Fix: use declared functions for callbacks instead of using create_function() |
* Note: This can be fixed using anonymous functions instead, but that requires PHP >= 5.3 |
* |
* @author Kyle Renfrow |
*/ |
function smarty_mod_cap_mbconvert_cb($matches){ |
return stripslashes($matches[1]).mb_convert_case(stripslashes($matches[2]),MB_CASE_UPPER, Plugin_Smarty_Smarty::$_CHARSET); |
} |
function smarty_mod_cap_mbconvert2_cb($matches){ |
return stripslashes($matches[1]).mb_convert_case(stripslashes($matches[3]),MB_CASE_UPPER, Plugin_Smarty_Smarty::$_CHARSET); |
} |
function smarty_mod_cap_ucfirst_cb($matches){ |
return stripslashes($matches[1]).ucfirst(stripslashes($matches[2])); |
} |
function smarty_mod_cap_ucfirst2_cb($matches){ |
return stripslashes($matches[1]).ucfirst(stripslashes($matches[3])); |
} |
/trunk/classes/plugins/modifier.date_format.php |
---|
New file |
0,0 → 1,64 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty date_format modifier plugin |
* |
* Type: modifier<br> |
* Name: date_format<br> |
* Purpose: format datestamps via strftime<br> |
* Input:<br> |
* - string: input date string |
* - format: strftime format for output |
* - default_date: default date if $string is empty |
* |
* @link http://www.smarty.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string input date string |
* @param string $format strftime format for output |
* @param string $default_date default date if $string is empty |
* @param string $formatter either 'strftime' or 'auto' |
* @return string |void |
* @uses smarty_make_timestamp() |
*/ |
function smarty_modifier_date_format($string, $format=null, $default_date='', $formatter='auto') |
{ |
if ($format === null) { |
$format = Plugin_Smarty_Smarty::$_DATE_FORMAT; |
} |
/** |
* Include the {@link shared.make_timestamp.php} plugin |
*/ |
require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); |
if ($string != '' && $string != '0000-00-00' && $string != '0000-00-00 00:00:00') { |
$timestamp = smarty_make_timestamp($string); |
} elseif ($default_date != '') { |
$timestamp = smarty_make_timestamp($default_date); |
} else { |
return; |
} |
if ($formatter=='strftime'||($formatter=='auto'&&strpos($format,'%')!==false)) { |
if (DS == '\\') { |
$_win_from = array('%D', '%h', '%n', '%r', '%R', '%t', '%T'); |
$_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S'); |
if (strpos($format, '%e') !== false) { |
$_win_from[] = '%e'; |
$_win_to[] = sprintf('%\' 2d', date('j', $timestamp)); |
} |
if (strpos($format, '%l') !== false) { |
$_win_from[] = '%l'; |
$_win_to[] = sprintf('%\' 2d', date('h', $timestamp)); |
} |
$format = str_replace($_win_from, $_win_to, $format); |
} |
return strftime($format, $timestamp); |
} else { |
return date($format, $timestamp); |
} |
} |
/trunk/classes/plugins/function.cycle.php |
---|
New file |
0,0 → 1,105 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {cycle} function plugin |
* |
* Type: function<br> |
* Name: cycle<br> |
* Date: May 3, 2002<br> |
* Purpose: cycle through given values<br> |
* Params: |
* <pre> |
* - name - name of cycle (optional) |
* - values - comma separated list of values to cycle, or an array of values to cycle |
* (this can be left out for subsequent calls) |
* - reset - boolean - resets given var to true |
* - print - boolean - print var or not. default is true |
* - advance - boolean - whether or not to advance the cycle |
* - delimiter - the value delimiter, default is "," |
* - assign - boolean, assigns to template var instead of printed. |
* </pre> |
* Examples:<br> |
* <pre> |
* {cycle values="#eeeeee,#d0d0d0d"} |
* {cycle name=row values="one,two,three" reset=true} |
* {cycle name=row} |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.cycle.php {cycle} |
* (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author credit to Mark Priatel <mpriatel@rogers.com> |
* @author credit to Gerard <gerard@interfold.com> |
* @author credit to Jason Sweat <jsweat_php@yahoo.com> |
* @version 1.3 |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string|null |
*/ |
function smarty_function_cycle($params, $template) |
{ |
static $cycle_vars; |
$name = (empty($params['name'])) ? 'default' : $params['name']; |
$print = (isset($params['print'])) ? (bool) $params['print'] : true; |
$advance = (isset($params['advance'])) ? (bool) $params['advance'] : true; |
$reset = (isset($params['reset'])) ? (bool) $params['reset'] : false; |
if (!isset($params['values'])) { |
if (!isset($cycle_vars[$name]['values'])) { |
trigger_error("cycle: missing 'values' parameter"); |
return; |
} |
} else { |
if(isset($cycle_vars[$name]['values']) |
&& $cycle_vars[$name]['values'] != $params['values'] ) { |
$cycle_vars[$name]['index'] = 0; |
} |
$cycle_vars[$name]['values'] = $params['values']; |
} |
if (isset($params['delimiter'])) { |
$cycle_vars[$name]['delimiter'] = $params['delimiter']; |
} elseif (!isset($cycle_vars[$name]['delimiter'])) { |
$cycle_vars[$name]['delimiter'] = ','; |
} |
if (is_array($cycle_vars[$name]['values'])) { |
$cycle_array = $cycle_vars[$name]['values']; |
} else { |
$cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']); |
} |
if (!isset($cycle_vars[$name]['index']) || $reset ) { |
$cycle_vars[$name]['index'] = 0; |
} |
if (isset($params['assign'])) { |
$print = false; |
$template->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]); |
} |
if ($print) { |
$retval = $cycle_array[$cycle_vars[$name]['index']]; |
} else { |
$retval = null; |
} |
if ($advance) { |
if ( $cycle_vars[$name]['index'] >= count($cycle_array) -1 ) { |
$cycle_vars[$name]['index'] = 0; |
} else { |
$cycle_vars[$name]['index']++; |
} |
} |
return $retval; |
} |
/trunk/classes/plugins/modifiercompiler.upper.php |
---|
New file |
0,0 → 1,28 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty upper modifier plugin |
* |
* Type: modifier<br> |
* Name: lower<br> |
* Purpose: convert string to uppercase |
* |
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_upper($params, $compiler) |
{ |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '\')' ; |
} |
// no MBString fallback |
return 'strtoupper(' . $params[0] . ')'; |
} |
/trunk/classes/plugins/block.textformat.php |
---|
New file |
0,0 → 1,110 |
<?php |
/** |
* Smarty plugin to format text blocks |
* |
* @package Smarty |
* @subpackage PluginsBlock |
*/ |
/** |
* Smarty {textformat}{/textformat} block plugin |
* |
* Type: block function<br> |
* Name: textformat<br> |
* Purpose: format text a certain way with preset styles |
* or custom wrap/indent settings<br> |
* Params: |
* <pre> |
* - style - string (email) |
* - indent - integer (0) |
* - wrap - integer (80) |
* - wrap_char - string ("\n") |
* - indent_char - string (" ") |
* - wrap_boundary - boolean (true) |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.textformat.php {textformat} |
* (Smarty online manual) |
* @param array $params parameters |
* @param string $content contents of the block |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @param boolean &$repeat repeat flag |
* @return string content re-formatted |
* @author Monte Ohrt <monte at ohrt dot com> |
*/ |
function smarty_block_textformat($params, $content, $template, &$repeat) |
{ |
if (is_null($content)) { |
return; |
} |
$style = null; |
$indent = 0; |
$indent_first = 0; |
$indent_char = ' '; |
$wrap = 80; |
$wrap_char = "\n"; |
$wrap_cut = false; |
$assign = null; |
foreach ($params as $_key => $_val) { |
switch ($_key) { |
case 'style': |
case 'indent_char': |
case 'wrap_char': |
case 'assign': |
$$_key = (string) $_val; |
break; |
case 'indent': |
case 'indent_first': |
case 'wrap': |
$$_key = (int) $_val; |
break; |
case 'wrap_cut': |
$$_key = (bool) $_val; |
break; |
default: |
trigger_error("textformat: unknown attribute '$_key'"); |
} |
} |
if ($style == 'email') { |
$wrap = 72; |
} |
// split into paragraphs |
$_paragraphs = preg_split('![\r\n]{2}!', $content); |
$_output = ''; |
foreach ($_paragraphs as &$_paragraph) { |
if (!$_paragraph) { |
continue; |
} |
// convert mult. spaces & special chars to single space |
$_paragraph = preg_replace(array('!\s+!' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, '!(^\s+)|(\s+$)!' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER), array(' ', ''), $_paragraph); |
// indent first line |
if ($indent_first > 0) { |
$_paragraph = str_repeat($indent_char, $indent_first) . $_paragraph; |
} |
// wordwrap sentences |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
require_once(SMARTY_PLUGINS_DIR . 'shared.mb_wordwrap.php'); |
$_paragraph = smarty_mb_wordwrap($_paragraph, $wrap - $indent, $wrap_char, $wrap_cut); |
} else { |
$_paragraph = wordwrap($_paragraph, $wrap - $indent, $wrap_char, $wrap_cut); |
} |
// indent lines |
if ($indent > 0) { |
$_paragraph = preg_replace('!^!m', str_repeat($indent_char, $indent), $_paragraph); |
} |
} |
$_output = implode($wrap_char . $wrap_char, $_paragraphs); |
if ($assign) { |
$template->assign($assign, $_output); |
} else { |
return $_output; |
} |
} |
/trunk/classes/plugins/modifiercompiler.count_sentences.php |
---|
New file |
0,0 → 1,26 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty count_sentences modifier plugin |
* |
* Type: modifier<br> |
* Name: count_sentences |
* Purpose: count the number of sentences in a text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php |
* count_sentences (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_count_sentences($params, $compiler) |
{ |
// find periods, question marks, exclamation marks with a word before but not after. |
return 'preg_match_all("#\w[\.\?\!](\W|$)#S' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER . '", ' . $params[0] . ', $tmp)'; |
} |
/trunk/classes/plugins/modifiercompiler.strip.php |
---|
New file |
0,0 → 1,32 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty strip modifier plugin |
* |
* Type: modifier<br> |
* Name: strip<br> |
* Purpose: Replace all repeated spaces, newlines, tabs |
* with a single space or supplied replacement string.<br> |
* Example: {$var|strip} {$var|strip:" "}<br> |
* Date: September 25th, 2002 |
* |
* @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_strip($params, $compiler) |
{ |
if (!isset($params[1])) { |
$params[1] = "' '"; |
} |
return "preg_replace('!\s+!" . Plugin_Smarty_Smarty::$_UTF8_MODIFIER . "', {$params[1]},{$params[0]})"; |
} |
/trunk/classes/plugins/function.html_radios.php |
---|
New file |
0,0 → 1,219 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {html_radios} function plugin |
* |
* File: function.html_radios.php<br> |
* Type: function<br> |
* Name: html_radios<br> |
* Date: 24.Feb.2003<br> |
* Purpose: Prints out a list of radio input types<br> |
* Params: |
* <pre> |
* - name (optional) - string default "radio" |
* - values (required) - array |
* - options (required) - associative array |
* - checked (optional) - array default not set |
* - separator (optional) - ie <br> or |
* - output (optional) - the output next to each radio button |
* - assign (optional) - assign the output as an array to this variable |
* - escape (optional) - escape the content (not value), defaults to true |
* </pre> |
* Examples: |
* <pre> |
* {html_radios values=$ids output=$names} |
* {html_radios values=$ids name='box' separator='<br>' output=$names} |
* {html_radios values=$ids checked=$checked separator='<br>' output=$names} |
* </pre> |
* |
* @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios} |
* (Smarty online manual) |
* @author Christopher Kvarme <christopher.kvarme@flashjab.com> |
* @author credits to Monte Ohrt <monte at ohrt dot com> |
* @version 1.0 |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
* @uses smarty_function_escape_special_chars() |
*/ |
function smarty_function_html_radios($params, $template) |
{ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
$name = 'radio'; |
$values = null; |
$options = null; |
$selected = null; |
$separator = ''; |
$escape = true; |
$labels = true; |
$label_ids = false; |
$output = null; |
$extra = ''; |
foreach ($params as $_key => $_val) { |
switch ($_key) { |
case 'name': |
case 'separator': |
$$_key = (string) $_val; |
break; |
case 'checked': |
case 'selected': |
if (is_array($_val)) { |
trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING); |
} elseif (is_object($_val)) { |
if (method_exists($_val, "__toString")) { |
$selected = smarty_function_escape_special_chars((string) $_val->__toString()); |
} else { |
trigger_error("html_radios: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE); |
} |
} else { |
$selected = (string) $_val; |
} |
break; |
case 'escape': |
case 'labels': |
case 'label_ids': |
$$_key = (bool) $_val; |
break; |
case 'options': |
$$_key = (array) $_val; |
break; |
case 'values': |
case 'output': |
$$_key = array_values((array) $_val); |
break; |
case 'radios': |
trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING); |
$options = (array) $_val; |
break; |
case 'assign': |
break; |
case 'strict': break; |
case 'disabled': |
case 'readonly': |
if (!empty($params['strict'])) { |
if (!is_scalar($_val)) { |
trigger_error("html_options: $_key attribute must be a scalar, only boolean true or string '$_key' will actually add the attribute", E_USER_NOTICE); |
} |
if ($_val === true || $_val === $_key) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_key) . '"'; |
} |
break; |
} |
// omit break; to fall through! |
default: |
if (!is_array($_val)) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; |
} else { |
trigger_error("html_radios: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
if (!isset($options) && !isset($values)) { |
/* raise error here? */ |
return ''; |
} |
$_html_result = array(); |
if (isset($options)) { |
foreach ($options as $_key => $_val) { |
$_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids, $escape); |
} |
} else { |
foreach ($values as $_i => $_key) { |
$_val = isset($output[$_i]) ? $output[$_i] : ''; |
$_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids, $escape); |
} |
} |
if (!empty($params['assign'])) { |
$template->assign($params['assign'], $_html_result); |
} else { |
return implode("\n", $_html_result); |
} |
} |
function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $escape) |
{ |
$_output = ''; |
if (is_object($value)) { |
if (method_exists($value, "__toString")) { |
$value = (string) $value->__toString(); |
} else { |
trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE); |
return ''; |
} |
} else { |
$value = (string) $value; |
} |
if (is_object($output)) { |
if (method_exists($output, "__toString")) { |
$output = (string) $output->__toString(); |
} else { |
trigger_error("html_options: output is an object of class '". get_class($output) ."' without __toString() method", E_USER_NOTICE); |
return ''; |
} |
} else { |
$output = (string) $output; |
} |
if ($labels) { |
if ($label_ids) { |
$_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, '_', $name . '_' . $value)); |
$_output .= '<label for="' . $_id . '">'; |
} else { |
$_output .= '<label>'; |
} |
} |
$name = smarty_function_escape_special_chars($name); |
$value = smarty_function_escape_special_chars($value); |
if ($escape) { |
$output = smarty_function_escape_special_chars($output); |
} |
$_output .= '<input type="radio" name="' . $name . '" value="' . $value . '"'; |
if ($labels && $label_ids) { |
$_output .= ' id="' . $_id . '"'; |
} |
if ($value === $selected) { |
$_output .= ' checked="checked"'; |
} |
$_output .= $extra . ' />' . $output; |
if ($labels) { |
$_output .= '</label>'; |
} |
$_output .= $separator; |
return $_output; |
} |
/trunk/classes/plugins/outputfilter.trimwhitespace.php |
---|
New file |
0,0 → 1,90 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFilter |
*/ |
/** |
* Smarty trimwhitespace outputfilter plugin |
* |
* Trim unnecessary whitespace from HTML markup. |
* |
* @author Rodney Rehm |
* @param string $source input string |
* @param Plugin_Smarty_InternalTemplate $smarty Smarty object |
* @return string filtered output |
* @todo substr_replace() is not overloaded by mbstring.func_overload - so this function might fail! |
*/ |
function smarty_outputfilter_trimwhitespace($source, Plugin_Smarty_InternalTemplate $smarty) |
{ |
$store = array(); |
$_store = 0; |
$_offset = 0; |
// Unify Line-Breaks to \n |
$source = preg_replace("/\015\012|\015|\012/", "\n", $source); |
// capture Internet Explorer Conditional Comments |
if (preg_match_all('#<!--\[[^\]]+\]>.*?<!\[[^\]]+\]-->#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) { |
foreach ($matches as $match) { |
$store[] = $match[0][0]; |
$_length = strlen($match[0][0]); |
$replace = '@!@SMARTY:' . $_store . ':SMARTY@!@'; |
$source = substr_replace($source, $replace, $match[0][1] - $_offset, $_length); |
$_offset += $_length - strlen($replace); |
$_store++; |
} |
} |
// Strip all HTML-Comments |
// yes, even the ones in <script> - see http://stackoverflow.com/a/808850/515124 |
$source = preg_replace( '#<!--.*?-->#ms', '', $source ); |
// capture html elements not to be messed with |
$_offset = 0; |
if (preg_match_all('#<(script|pre|textarea)[^>]*>.*?</\\1>#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) { |
foreach ($matches as $match) { |
$store[] = $match[0][0]; |
$_length = strlen($match[0][0]); |
$replace = '@!@SMARTY:' . $_store . ':SMARTY@!@'; |
$source = substr_replace($source, $replace, $match[0][1] - $_offset, $_length); |
$_offset += $_length - strlen($replace); |
$_store++; |
} |
} |
$expressions = array( |
// replace multiple spaces between tags by a single space |
// can't remove them entirely, becaue that might break poorly implemented CSS display:inline-block elements |
'#(:SMARTY@!@|>)\s+(?=@!@SMARTY:|<)#s' => '\1 \2', |
// remove spaces between attributes (but not in attribute values!) |
'#(([a-z0-9]\s*=\s*(["\'])[^\3]*?\3)|<[a-z0-9_]+)\s+([a-z/>])#is' => '\1 \4', |
// note: for some very weird reason trim() seems to remove spaces inside attributes. |
// maybe a \0 byte or something is interfering? |
'#^\s+<#Ss' => '<', |
'#>\s+$#Ss' => '>', |
); |
$source = preg_replace( array_keys($expressions), array_values($expressions), $source ); |
// note: for some very weird reason trim() seems to remove spaces inside attributes. |
// maybe a \0 byte or something is interfering? |
// $source = trim( $source ); |
$_offset = 0; |
if (preg_match_all('#@!@SMARTY:([0-9]+):SMARTY@!@#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) { |
foreach ($matches as $match) { |
$_length = strlen($match[0][0]); |
$replace = $store[$match[1][0]]; |
$source = substr_replace($source, $replace, $match[0][1] + $_offset, $_length); |
$_offset += strlen($replace) - $_length; |
$_store++; |
} |
} |
return $source; |
} |
/trunk/classes/plugins/modifiercompiler.wordwrap.php |
---|
New file |
0,0 → 1,45 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty wordwrap modifier plugin |
* |
* Type: modifier<br> |
* Name: wordwrap<br> |
* Purpose: wrap a string of text at a given length |
* |
* @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php wordwrap (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_wordwrap($params, $compiler) |
{ |
if (!isset($params[1])) { |
$params[1] = 80; |
} |
if (!isset($params[2])) { |
$params[2] = '"\n"'; |
} |
if (!isset($params[3])) { |
$params[3] = 'false'; |
} |
$function = 'wordwrap'; |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if ($compiler->template->caching && ($compiler->tag_nocache | $compiler->nocache)) { |
$compiler->template->required_plugins['nocache']['wordwrap']['modifier']['file'] = SMARTY_PLUGINS_DIR .'shared.mb_wordwrap.php'; |
$compiler->template->required_plugins['nocache']['wordwrap']['modifier']['function'] = 'smarty_mb_wordwrap'; |
} else { |
$compiler->template->required_plugins['compiled']['wordwrap']['modifier']['file'] = SMARTY_PLUGINS_DIR .'shared.mb_wordwrap.php'; |
$compiler->template->required_plugins['compiled']['wordwrap']['modifier']['function'] = 'smarty_mb_wordwrap'; |
} |
$function = 'smarty_mb_wordwrap'; |
} |
return $function . '(' . $params[0] . ',' . $params[1] . ',' . $params[2] . ',' . $params[3] . ')'; |
} |
/trunk/classes/plugins/modifiercompiler.count_words.php |
---|
New file |
0,0 → 1,30 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty count_words modifier plugin |
* |
* Type: modifier<br> |
* Name: count_words<br> |
* Purpose: count the number of words in a text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_count_words($params, $compiler) |
{ |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
// return 'preg_match_all(\'#[\w\pL]+#' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER . '\', ' . $params[0] . ', $tmp)'; |
// expression taken from http://de.php.net/manual/en/function.str-word-count.php#85592 |
return 'preg_match_all(\'/\p{L}[\p{L}\p{Mn}\p{Pd}\\\'\x{2019}]*/' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER . '\', ' . $params[0] . ', $tmp)'; |
} |
// no MBString fallback |
return 'str_word_count(' . $params[0] . ')'; |
} |
/trunk/classes/plugins/function.html_table.php |
---|
New file |
0,0 → 1,176 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {html_table} function plugin |
* |
* Type: function<br> |
* Name: html_table<br> |
* Date: Feb 17, 2003<br> |
* Purpose: make an html table from an array of data<br> |
* Params: |
* <pre> |
* - loop - array to loop through |
* - cols - number of columns, comma separated list of column names |
* or array of column names |
* - rows - number of rows |
* - table_attr - table attributes |
* - th_attr - table heading attributes (arrays are cycled) |
* - tr_attr - table row attributes (arrays are cycled) |
* - td_attr - table cell attributes (arrays are cycled) |
* - trailpad - value to pad trailing cells with |
* - caption - text for caption element |
* - vdir - vertical direction (default: "down", means top-to-bottom) |
* - hdir - horizontal direction (default: "right", means left-to-right) |
* - inner - inner loop (default "cols": print $loop line by line, |
* $loop will be printed column by column otherwise) |
* </pre> |
* Examples: |
* <pre> |
* {table loop=$data} |
* {table loop=$data cols=4 tr_attr='"bgcolor=red"'} |
* {table loop=$data cols="first,second,third" tr_attr=$colors} |
* </pre> |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author credit to Messju Mohr <messju at lammfellpuschen dot de> |
* @author credit to boots <boots dot smarty at yahoo dot com> |
* @version 1.1 |
* @link http://www.smarty.net/manual/en/language.function.html.table.php {html_table} |
* (Smarty online manual) |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
*/ |
function smarty_function_html_table($params, $template) |
{ |
$table_attr = 'border="1"'; |
$tr_attr = ''; |
$th_attr = ''; |
$td_attr = ''; |
$cols = $cols_count = 3; |
$rows = 3; |
$trailpad = ' '; |
$vdir = 'down'; |
$hdir = 'right'; |
$inner = 'cols'; |
$caption = ''; |
$loop = null; |
if (!isset($params['loop'])) { |
trigger_error("html_table: missing 'loop' parameter",E_USER_WARNING); |
return; |
} |
foreach ($params as $_key => $_value) { |
switch ($_key) { |
case 'loop': |
$$_key = (array) $_value; |
break; |
case 'cols': |
if (is_array($_value) && !empty($_value)) { |
$cols = $_value; |
$cols_count = count($_value); |
} elseif (!is_numeric($_value) && is_string($_value) && !empty($_value)) { |
$cols = explode(',', $_value); |
$cols_count = count($cols); |
} elseif (!empty($_value)) { |
$cols_count = (int) $_value; |
} else { |
$cols_count = $cols; |
} |
break; |
case 'rows': |
$$_key = (int) $_value; |
break; |
case 'table_attr': |
case 'trailpad': |
case 'hdir': |
case 'vdir': |
case 'inner': |
case 'caption': |
$$_key = (string) $_value; |
break; |
case 'tr_attr': |
case 'td_attr': |
case 'th_attr': |
$$_key = $_value; |
break; |
} |
} |
$loop_count = count($loop); |
if (empty($params['rows'])) { |
/* no rows specified */ |
$rows = ceil($loop_count / $cols_count); |
} elseif (empty($params['cols'])) { |
if (!empty($params['rows'])) { |
/* no cols specified, but rows */ |
$cols_count = ceil($loop_count / $rows); |
} |
} |
$output = "<table $table_attr>\n"; |
if (!empty($caption)) { |
$output .= '<caption>' . $caption . "</caption>\n"; |
} |
if (is_array($cols)) { |
$cols = ($hdir == 'right') ? $cols : array_reverse($cols); |
$output .= "<thead><tr>\n"; |
for ($r = 0; $r < $cols_count; $r++) { |
$output .= '<th' . smarty_function_html_table_cycle('th', $th_attr, $r) . '>'; |
$output .= $cols[$r]; |
$output .= "</th>\n"; |
} |
$output .= "</tr></thead>\n"; |
} |
$output .= "<tbody>\n"; |
for ($r = 0; $r < $rows; $r++) { |
$output .= "<tr" . smarty_function_html_table_cycle('tr', $tr_attr, $r) . ">\n"; |
$rx = ($vdir == 'down') ? $r * $cols_count : ($rows-1 - $r) * $cols_count; |
for ($c = 0; $c < $cols_count; $c++) { |
$x = ($hdir == 'right') ? $rx + $c : $rx + $cols_count-1 - $c; |
if ($inner != 'cols') { |
/* shuffle x to loop over rows*/ |
$x = floor($x / $cols_count) + ($x % $cols_count) * $rows; |
} |
if ($x < $loop_count) { |
$output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">" . $loop[$x] . "</td>\n"; |
} else { |
$output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">$trailpad</td>\n"; |
} |
} |
$output .= "</tr>\n"; |
} |
$output .= "</tbody>\n"; |
$output .= "</table>\n"; |
return $output; |
} |
function smarty_function_html_table_cycle($name, $var, $no) |
{ |
if (!is_array($var)) { |
$ret = $var; |
} else { |
$ret = $var[$no % count($var)]; |
} |
return ($ret) ? ' ' . $ret : ''; |
} |
/trunk/classes/plugins/modifiercompiler.cat.php |
---|
New file |
0,0 → 1,28 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty cat modifier plugin |
* |
* Type: modifier<br> |
* Name: cat<br> |
* Date: Feb 24, 2003<br> |
* Purpose: catenate a value to a variable<br> |
* Input: string to catenate<br> |
* Example: {$var|cat:"foo"} |
* |
* @link http://smarty.php.net/manual/en/language.modifier.cat.php cat |
* (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_cat($params, $compiler) |
{ |
return '('.implode(').(', $params).')'; |
} |
/trunk/classes/plugins/modifier.regex_replace.php |
---|
New file |
0,0 → 1,55 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty regex_replace modifier plugin |
* |
* Type: modifier<br> |
* Name: regex_replace<br> |
* Purpose: regular expression search/replace |
* |
* @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php |
* regex_replace (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string input string |
* @param string|array $search regular expression(s) to search for |
* @param string|array $replace string(s) that should be replaced |
* @return string |
*/ |
function smarty_modifier_regex_replace($string, $search, $replace) |
{ |
if (is_array($search)) { |
foreach ($search as $idx => $s) { |
$search[$idx] = _smarty_regex_replace_check($s); |
} |
} else { |
$search = _smarty_regex_replace_check($search); |
} |
return preg_replace($search, $replace, $string); |
} |
/** |
* @param string $search string(s) that should be replaced |
* @return string |
* @ignore |
*/ |
function _smarty_regex_replace_check($search) |
{ |
// null-byte injection detection |
// anything behind the first null-byte is ignored |
if (($pos = strpos($search,"\0")) !== false) { |
$search = substr($search,0,$pos); |
} |
// remove eval-modifier from $search |
if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) { |
$search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]); |
} |
return $search; |
} |
/trunk/classes/plugins/function.html_options.php |
---|
New file |
0,0 → 1,195 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {html_options} function plugin |
* |
* Type: function<br> |
* Name: html_options<br> |
* Purpose: Prints the list of <option> tags generated from |
* the passed parameters<br> |
* Params: |
* <pre> |
* - name (optional) - string default "select" |
* - values (required) - if no options supplied) - array |
* - options (required) - if no values supplied) - associative array |
* - selected (optional) - string default not set |
* - output (required) - if not options supplied) - array |
* - id (optional) - string default not set |
* - class (optional) - string default not set |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.html.options.php {html_image} |
* (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Ralf Strehle (minor optimization) <ralf dot strehle at yahoo dot de> |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
* @uses smarty_function_escape_special_chars() |
*/ |
function smarty_function_html_options($params, $template) |
{ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
$name = null; |
$values = null; |
$options = null; |
$selected = null; |
$output = null; |
$id = null; |
$class = null; |
$extra = ''; |
foreach ($params as $_key => $_val) { |
switch ($_key) { |
case 'name': |
case 'class': |
case 'id': |
$$_key = (string) $_val; |
break; |
case 'options': |
$options = (array) $_val; |
break; |
case 'values': |
case 'output': |
$$_key = array_values((array) $_val); |
break; |
case 'selected': |
if (is_array($_val)) { |
$selected = array(); |
foreach ($_val as $_sel) { |
if (is_object($_sel)) { |
if (method_exists($_sel, "__toString")) { |
$_sel = smarty_function_escape_special_chars((string) $_sel->__toString()); |
} else { |
trigger_error("html_options: selected attribute contains an object of class '". get_class($_sel) ."' without __toString() method", E_USER_NOTICE); |
continue; |
} |
} else { |
$_sel = smarty_function_escape_special_chars((string) $_sel); |
} |
$selected[$_sel] = true; |
} |
} elseif (is_object($_val)) { |
if (method_exists($_val, "__toString")) { |
$selected = smarty_function_escape_special_chars((string) $_val->__toString()); |
} else { |
trigger_error("html_options: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE); |
} |
} else { |
$selected = smarty_function_escape_special_chars((string) $_val); |
} |
break; |
case 'strict': break; |
case 'disabled': |
case 'readonly': |
if (!empty($params['strict'])) { |
if (!is_scalar($_val)) { |
trigger_error("html_options: $_key attribute must be a scalar, only boolean true or string '$_key' will actually add the attribute", E_USER_NOTICE); |
} |
if ($_val === true || $_val === $_key) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_key) . '"'; |
} |
break; |
} |
// omit break; to fall through! |
default: |
if (!is_array($_val)) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; |
} else { |
trigger_error("html_options: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
if (!isset($options) && !isset($values)) { |
/* raise error here? */ |
return ''; |
} |
$_html_result = ''; |
$_idx = 0; |
if (isset($options)) { |
foreach ($options as $_key => $_val) { |
$_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx); |
} |
} else { |
foreach ($values as $_i => $_key) { |
$_val = isset($output[$_i]) ? $output[$_i] : ''; |
$_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx); |
} |
} |
if (!empty($name)) { |
$_html_class = !empty($class) ? ' class="'.$class.'"' : ''; |
$_html_id = !empty($id) ? ' id="'.$id.'"' : ''; |
$_html_result = '<select name="' . $name . '"' . $_html_class . $_html_id . $extra . '>' . "\n" . $_html_result . '</select>' . "\n"; |
} |
return $_html_result; |
} |
function smarty_function_html_options_optoutput($key, $value, $selected, $id, $class, &$idx) |
{ |
if (!is_array($value)) { |
$_key = smarty_function_escape_special_chars($key); |
$_html_result = '<option value="' . $_key . '"'; |
if (is_array($selected)) { |
if (isset($selected[$_key])) { |
$_html_result .= ' selected="selected"'; |
} |
} elseif ($_key === $selected) { |
$_html_result .= ' selected="selected"'; |
} |
$_html_class = !empty($class) ? ' class="'.$class.' option"' : ''; |
$_html_id = !empty($id) ? ' id="'.$id.'-'.$idx.'"' : ''; |
if (is_object($value)) { |
if (method_exists($value, "__toString")) { |
$value = smarty_function_escape_special_chars((string) $value->__toString()); |
} else { |
trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE); |
return ''; |
} |
} else { |
$value = smarty_function_escape_special_chars((string) $value); |
} |
$_html_result .= $_html_class . $_html_id . '>' . $value . '</option>' . "\n"; |
$idx++; |
} else { |
$_idx = 0; |
$_html_result = smarty_function_html_options_optgroup($key, $value, $selected, !empty($id) ? ($id.'-'.$idx) : null, $class, $_idx); |
$idx++; |
} |
return $_html_result; |
} |
function smarty_function_html_options_optgroup($key, $values, $selected, $id, $class, &$idx) |
{ |
$optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "\n"; |
foreach ($values as $key => $value) { |
$optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected, $id, $class, $idx); |
} |
$optgroup_html .= "</optgroup>\n"; |
return $optgroup_html; |
} |
/trunk/classes/plugins/function.counter.php |
---|
New file |
0,0 → 1,76 |
<?php |
/** |
* Smarty plugin |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {counter} function plugin |
* |
* Type: function<br> |
* Name: counter<br> |
* Purpose: print out a counter value |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @link http://www.smarty.net/manual/en/language.function.counter.php {counter} |
* (Smarty online manual) |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string|null |
*/ |
function smarty_function_counter($params, $template) |
{ |
static $counters = array(); |
$name = (isset($params['name'])) ? $params['name'] : 'default'; |
if (!isset($counters[$name])) { |
$counters[$name] = array( |
'start'=>1, |
'skip'=>1, |
'direction'=>'up', |
'count'=>1 |
); |
} |
$counter =& $counters[$name]; |
if (isset($params['start'])) { |
$counter['start'] = $counter['count'] = (int) $params['start']; |
} |
if (!empty($params['assign'])) { |
$counter['assign'] = $params['assign']; |
} |
if (isset($counter['assign'])) { |
$template->assign($counter['assign'], $counter['count']); |
} |
if (isset($params['print'])) { |
$print = (bool) $params['print']; |
} else { |
$print = empty($counter['assign']); |
} |
if ($print) { |
$retval = $counter['count']; |
} else { |
$retval = null; |
} |
if (isset($params['skip'])) { |
$counter['skip'] = $params['skip']; |
} |
if (isset($params['direction'])) { |
$counter['direction'] = $params['direction']; |
} |
if ($counter['direction'] == "down") |
$counter['count'] -= $counter['skip']; |
else |
$counter['count'] += $counter['skip']; |
return $retval; |
} |
/trunk/classes/plugins/modifiercompiler.from_charset.php |
---|
New file |
0,0 → 1,32 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty from_charset modifier plugin |
* |
* Type: modifier<br> |
* Name: from_charset<br> |
* Purpose: convert character encoding from $charset to internal encoding |
* |
* @author Rodney Rehm |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_from_charset($params, $compiler) |
{ |
if (!Plugin_Smarty_Smarty::$_MBSTRING) { |
// FIXME: (rodneyrehm) shouldn't this throw an error? |
return $params[0]; |
} |
if (!isset($params[1])) { |
$params[1] = '"ISO-8859-1"'; |
} |
return 'mb_convert_encoding(' . $params[0] . ', "' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '", ' . $params[1] . ')'; |
} |
/trunk/classes/plugins/shared.make_timestamp.php |
---|
New file |
0,0 → 1,41 |
<?php |
/** |
* Smarty shared plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
/** |
* Function: smarty_make_timestamp<br> |
* Purpose: used by other smarty functions to make a timestamp from a string. |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param DateTime|int|string $string date object, timestamp or string that can be converted using strtotime() |
* @return int |
*/ |
function smarty_make_timestamp($string) |
{ |
if (empty($string)) { |
// use "now": |
return time(); |
} elseif ($string instanceof DateTime) { |
return $string->getTimestamp(); |
} elseif (strlen($string) == 14 && ctype_digit($string)) { |
// it is mysql timestamp format of YYYYMMDDHHMMSS? |
return mktime(substr($string, 8, 2),substr($string, 10, 2),substr($string, 12, 2), |
substr($string, 4, 2),substr($string, 6, 2),substr($string, 0, 4)); |
} elseif (is_numeric($string)) { |
// it is a numeric string, we handle it as timestamp |
return (int) $string; |
} else { |
// strtotime should handle it |
$time = strtotime($string); |
if ($time == -1 || $time === false) { |
// strtotime() was not able to parse $string, use "now": |
return time(); |
} |
return $time; |
} |
} |
/trunk/classes/plugins/function.html_select_time.php |
---|
New file |
0,0 → 1,364 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* @ignore |
*/ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
/** |
* @ignore |
*/ |
require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); |
/** |
* Smarty {html_select_time} function plugin |
* |
* Type: function<br> |
* Name: html_select_time<br> |
* Purpose: Prints the dropdowns for time selection |
* |
* @link http://www.smarty.net/manual/en/language.function.html.select.time.php {html_select_time} |
* (Smarty online manual) |
* @author Roberto Berto <roberto@berto.net> |
* @author Monte Ohrt <monte AT ohrt DOT com> |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
* @uses smarty_make_timestamp() |
*/ |
function smarty_function_html_select_time($params, $template) |
{ |
$prefix = "Time_"; |
$field_array = null; |
$field_separator = "\n"; |
$option_separator = "\n"; |
$time = null; |
$display_hours = true; |
$display_minutes = true; |
$display_seconds = true; |
$display_meridian = true; |
$hour_format = '%02d'; |
$hour_value_format = '%02d'; |
$minute_format = '%02d'; |
$minute_value_format = '%02d'; |
$second_format = '%02d'; |
$second_value_format = '%02d'; |
$hour_size = null; |
$minute_size = null; |
$second_size = null; |
$meridian_size = null; |
$all_empty = null; |
$hour_empty = null; |
$minute_empty = null; |
$second_empty = null; |
$meridian_empty = null; |
$all_id = null; |
$hour_id = null; |
$minute_id = null; |
$second_id = null; |
$meridian_id = null; |
$use_24_hours = true; |
$minute_interval = 1; |
$second_interval = 1; |
$extra_attrs = ''; |
$all_extra = null; |
$hour_extra = null; |
$minute_extra = null; |
$second_extra = null; |
$meridian_extra = null; |
foreach ($params as $_key => $_value) { |
switch ($_key) { |
case 'time': |
if (!is_array($_value) && $_value !== null) { |
$time = smarty_make_timestamp($_value); |
} |
break; |
case 'prefix': |
case 'field_array': |
case 'field_separator': |
case 'option_separator': |
case 'all_extra': |
case 'hour_extra': |
case 'minute_extra': |
case 'second_extra': |
case 'meridian_extra': |
case 'all_empty': |
case 'hour_empty': |
case 'minute_empty': |
case 'second_empty': |
case 'meridian_empty': |
case 'all_id': |
case 'hour_id': |
case 'minute_id': |
case 'second_id': |
case 'meridian_id': |
case 'hour_format': |
case 'hour_value_format': |
case 'minute_format': |
case 'minute_value_format': |
case 'second_format': |
case 'second_value_format': |
$$_key = (string) $_value; |
break; |
case 'display_hours': |
case 'display_minutes': |
case 'display_seconds': |
case 'display_meridian': |
case 'use_24_hours': |
$$_key = (bool) $_value; |
break; |
case 'minute_interval': |
case 'second_interval': |
case 'hour_size': |
case 'minute_size': |
case 'second_size': |
case 'meridian_size': |
$$_key = (int) $_value; |
break; |
default: |
if (!is_array($_value)) { |
$extra_attrs .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_value) . '"'; |
} else { |
trigger_error("html_select_date: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
if (isset($params['time']) && is_array($params['time'])) { |
if (isset($params['time'][$prefix . 'Hour'])) { |
// $_REQUEST[$field_array] given |
foreach (array('H' => 'Hour', 'i' => 'Minute', 's' => 'Second') as $_elementKey => $_elementName) { |
$_variableName = '_' . strtolower($_elementName); |
$$_variableName = isset($params['time'][$prefix . $_elementName]) |
? $params['time'][$prefix . $_elementName] |
: date($_elementKey); |
} |
$_meridian = isset($params['time'][$prefix . 'Meridian']) |
? (' ' . $params['time'][$prefix . 'Meridian']) |
: ''; |
$time = strtotime( $_hour . ':' . $_minute . ':' . $_second . $_meridian ); |
list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time)); |
} elseif (isset($params['time'][$field_array][$prefix . 'Hour'])) { |
// $_REQUEST given |
foreach (array('H' => 'Hour', 'i' => 'Minute', 's' => 'Second') as $_elementKey => $_elementName) { |
$_variableName = '_' . strtolower($_elementName); |
$$_variableName = isset($params['time'][$field_array][$prefix . $_elementName]) |
? $params['time'][$field_array][$prefix . $_elementName] |
: date($_elementKey); |
} |
$_meridian = isset($params['time'][$field_array][$prefix . 'Meridian']) |
? (' ' . $params['time'][$field_array][$prefix . 'Meridian']) |
: ''; |
$time = strtotime( $_hour . ':' . $_minute . ':' . $_second . $_meridian ); |
list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time)); |
} else { |
// no date found, use NOW |
list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d')); |
} |
} elseif ($time === null) { |
if (array_key_exists('time', $params)) { |
$_hour = $_minute = $_second = $time = null; |
} else { |
list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s')); |
} |
} else { |
list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time)); |
} |
// generate hour <select> |
if ($display_hours) { |
$_html_hours = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Hour]') : ($prefix . 'Hour'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($hour_extra) { |
$_extra .= ' ' . $hour_extra; |
} |
$_html_hours = '<select name="' . $_name . '"'; |
if ($hour_id !== null || $all_id !== null) { |
$_html_hours .= ' id="' . smarty_function_escape_special_chars( |
$hour_id !== null ? ( $hour_id ? $hour_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($hour_size) { |
$_html_hours .= ' size="' . $hour_size . '"'; |
} |
$_html_hours .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($hour_empty) || isset($all_empty)) { |
$_html_hours .= '<option value="">' . ( isset($hour_empty) ? $hour_empty : $all_empty ) . '</option>' . $option_separator; |
} |
$start = $use_24_hours ? 0 : 1; |
$end = $use_24_hours ? 23 : 12; |
for ($i=$start; $i <= $end; $i++) { |
$_val = sprintf('%02d', $i); |
$_text = $hour_format == '%02d' ? $_val : sprintf($hour_format, $i); |
$_value = $hour_value_format == '%02d' ? $_val : sprintf($hour_value_format, $i); |
if (!$use_24_hours) { |
$_hour12 = $_hour == 0 |
? 12 |
: ($_hour <= 12 ? $_hour : $_hour -12); |
} |
$selected = $_hour !== null ? ($use_24_hours ? $_hour == $_val : $_hour12 == $_val) : null; |
$_html_hours .= '<option value="' . $_value . '"' |
. ($selected ? ' selected="selected"' : '') |
. '>' . $_text . '</option>' . $option_separator; |
} |
$_html_hours .= '</select>'; |
} |
// generate minute <select> |
if ($display_minutes) { |
$_html_minutes = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Minute]') : ($prefix . 'Minute'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($minute_extra) { |
$_extra .= ' ' . $minute_extra; |
} |
$_html_minutes = '<select name="' . $_name . '"'; |
if ($minute_id !== null || $all_id !== null) { |
$_html_minutes .= ' id="' . smarty_function_escape_special_chars( |
$minute_id !== null ? ( $minute_id ? $minute_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($minute_size) { |
$_html_minutes .= ' size="' . $minute_size . '"'; |
} |
$_html_minutes .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($minute_empty) || isset($all_empty)) { |
$_html_minutes .= '<option value="">' . ( isset($minute_empty) ? $minute_empty : $all_empty ) . '</option>' . $option_separator; |
} |
$selected = $_minute !== null ? ($_minute - $_minute % $minute_interval) : null; |
for ($i=0; $i <= 59; $i += $minute_interval) { |
$_val = sprintf('%02d', $i); |
$_text = $minute_format == '%02d' ? $_val : sprintf($minute_format, $i); |
$_value = $minute_value_format == '%02d' ? $_val : sprintf($minute_value_format, $i); |
$_html_minutes .= '<option value="' . $_value . '"' |
. ($selected === $i ? ' selected="selected"' : '') |
. '>' . $_text . '</option>' . $option_separator; |
} |
$_html_minutes .= '</select>'; |
} |
// generate second <select> |
if ($display_seconds) { |
$_html_seconds = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Second]') : ($prefix . 'Second'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($second_extra) { |
$_extra .= ' ' . $second_extra; |
} |
$_html_seconds = '<select name="' . $_name . '"'; |
if ($second_id !== null || $all_id !== null) { |
$_html_seconds .= ' id="' . smarty_function_escape_special_chars( |
$second_id !== null ? ( $second_id ? $second_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($second_size) { |
$_html_seconds .= ' size="' . $second_size . '"'; |
} |
$_html_seconds .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($second_empty) || isset($all_empty)) { |
$_html_seconds .= '<option value="">' . ( isset($second_empty) ? $second_empty : $all_empty ) . '</option>' . $option_separator; |
} |
$selected = $_second !== null ? ($_second - $_second % $second_interval) : null; |
for ($i=0; $i <= 59; $i += $second_interval) { |
$_val = sprintf('%02d', $i); |
$_text = $second_format == '%02d' ? $_val : sprintf($second_format, $i); |
$_value = $second_value_format == '%02d' ? $_val : sprintf($second_value_format, $i); |
$_html_seconds .= '<option value="' . $_value . '"' |
. ($selected === $i ? ' selected="selected"' : '') |
. '>' . $_text . '</option>' . $option_separator; |
} |
$_html_seconds .= '</select>'; |
} |
// generate meridian <select> |
if ($display_meridian && !$use_24_hours) { |
$_html_meridian = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Meridian]') : ($prefix . 'Meridian'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($meridian_extra) { |
$_extra .= ' ' . $meridian_extra; |
} |
$_html_meridian = '<select name="' . $_name . '"'; |
if ($meridian_id !== null || $all_id !== null) { |
$_html_meridian .= ' id="' . smarty_function_escape_special_chars( |
$meridian_id !== null ? ( $meridian_id ? $meridian_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($meridian_size) { |
$_html_meridian .= ' size="' . $meridian_size . '"'; |
} |
$_html_meridian .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($meridian_empty) || isset($all_empty)) { |
$_html_meridian .= '<option value="">' . ( isset($meridian_empty) ? $meridian_empty : $all_empty ) . '</option>' . $option_separator; |
} |
$_html_meridian .= '<option value="am"'. ($_hour > 0 && $_hour < 12 ? ' selected="selected"' : '') .'>AM</option>' . $option_separator |
. '<option value="pm"'. ($_hour < 12 ? '' : ' selected="selected"') .'>PM</option>' . $option_separator |
. '</select>'; |
} |
$_html = ''; |
foreach (array('_html_hours', '_html_minutes', '_html_seconds', '_html_meridian') as $k) { |
if (isset($$k)) { |
if ($_html) { |
$_html .= $field_separator; |
} |
$_html .= $$k; |
} |
} |
return $_html; |
} |
/trunk/classes/plugins/modifiercompiler.string_format.php |
---|
New file |
0,0 → 1,24 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty string_format modifier plugin |
* |
* Type: modifier<br> |
* Name: string_format<br> |
* Purpose: format strings via sprintf |
* |
* @link http://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_string_format($params, $compiler) |
{ |
return 'sprintf(' . $params[1] . ',' . $params[0] . ')'; |
} |
/trunk/classes/plugins/modifiercompiler.indent.php |
---|
New file |
0,0 → 1,31 |
<?php |
/** |
* Smarty plugin |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty indent modifier plugin |
* |
* Type: modifier<br> |
* Name: indent<br> |
* Purpose: indent lines of text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.indent.php indent (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_indent($params, $compiler) |
{ |
if (!isset($params[1])) { |
$params[1] = 4; |
} |
if (!isset($params[2])) { |
$params[2] = "' '"; |
} |
return 'preg_replace(\'!^!m\',str_repeat(' . $params[2] . ',' . $params[1] . '),' . $params[0] . ')'; |
} |
/trunk/classes/plugins/function.mailto.php |
---|
New file |
0,0 → 1,154 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {mailto} function plugin |
* |
* Type: function<br> |
* Name: mailto<br> |
* Date: May 21, 2002 |
* Purpose: automate mailto address link creation, and optionally encode them.<br> |
* Params: |
* <pre> |
* - address - (required) - e-mail address |
* - text - (optional) - text to display, default is address |
* - encode - (optional) - can be one of: |
* * none : no encoding (default) |
* * javascript : encode with javascript |
* * javascript_charcode : encode with javascript charcode |
* * hex : encode with hexidecimal (no javascript) |
* - cc - (optional) - address(es) to carbon copy |
* - bcc - (optional) - address(es) to blind carbon copy |
* - subject - (optional) - e-mail subject |
* - newsgroups - (optional) - newsgroup(s) to post to |
* - followupto - (optional) - address(es) to follow up to |
* - extra - (optional) - extra tags for the href link |
* </pre> |
* Examples: |
* <pre> |
* {mailto address="me@domain.com"} |
* {mailto address="me@domain.com" encode="javascript"} |
* {mailto address="me@domain.com" encode="hex"} |
* {mailto address="me@domain.com" subject="Hello to you!"} |
* {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"} |
* {mailto address="me@domain.com" extra='class="mailto"'} |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.mailto.php {mailto} |
* (Smarty online manual) |
* @version 1.2 |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author credits to Jason Sweat (added cc, bcc and subject functionality) |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
*/ |
function smarty_function_mailto($params, $template) |
{ |
static $_allowed_encoding = array('javascript' => true, 'javascript_charcode' => true, 'hex' => true, 'none' => true); |
$extra = ''; |
if (empty($params['address'])) { |
trigger_error("mailto: missing 'address' parameter",E_USER_WARNING); |
return; |
} else { |
$address = $params['address']; |
} |
$text = $address; |
// netscape and mozilla do not decode %40 (@) in BCC field (bug?) |
// so, don't encode it. |
$search = array('%40', '%2C'); |
$replace = array('@', ','); |
$mail_parms = array(); |
foreach ($params as $var => $value) { |
switch ($var) { |
case 'cc': |
case 'bcc': |
case 'followupto': |
if (!empty($value)) |
$mail_parms[] = $var . '=' . str_replace($search, $replace, rawurlencode($value)); |
break; |
case 'subject': |
case 'newsgroups': |
$mail_parms[] = $var . '=' . rawurlencode($value); |
break; |
case 'extra': |
case 'text': |
$$var = $value; |
default: |
} |
} |
if ($mail_parms) { |
$address .= '?' . join('&', $mail_parms); |
} |
$encode = (empty($params['encode'])) ? 'none' : $params['encode']; |
if (!isset($_allowed_encoding[$encode])) { |
trigger_error("mailto: 'encode' parameter must be none, javascript, javascript_charcode or hex", E_USER_WARNING); |
return; |
} |
// FIXME: (rodneyrehm) document.write() excues me what? 1998 has passed! |
if ($encode == 'javascript') { |
$string = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
$js_encode = ''; |
for ($x = 0, $_length = strlen($string); $x < $_length; $x++) { |
$js_encode .= '%' . bin2hex($string[$x]); |
} |
return '<script type="text/javascript">eval(unescape(\'' . $js_encode . '\'))</script>'; |
} elseif ($encode == 'javascript_charcode') { |
$string = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
for ($x = 0, $y = strlen($string); $x < $y; $x++) { |
$ord[] = ord($string[$x]); |
} |
$_ret = "<script type=\"text/javascript\" language=\"javascript\">\n" |
. "{document.write(String.fromCharCode(" |
. implode(',', $ord) |
. "))" |
. "}\n" |
. "</script>\n"; |
return $_ret; |
} elseif ($encode == 'hex') { |
preg_match('!^(.*)(\?.*)$!', $address, $match); |
if (!empty($match[2])) { |
trigger_error("mailto: hex encoding does not work with extra attributes. Try javascript.",E_USER_WARNING); |
return; |
} |
$address_encode = ''; |
for ($x = 0, $_length = strlen($address); $x < $_length; $x++) { |
if (preg_match('!\w!' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $address[$x])) { |
$address_encode .= '%' . bin2hex($address[$x]); |
} else { |
$address_encode .= $address[$x]; |
} |
} |
$text_encode = ''; |
for ($x = 0, $_length = strlen($text); $x < $_length; $x++) { |
$text_encode .= '&#x' . bin2hex($text[$x]) . ';'; |
} |
$mailto = "mailto:"; |
return '<a href="' . $mailto . $address_encode . '" ' . $extra . '>' . $text_encode . '</a>'; |
} else { |
// no encoding |
return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
} |
} |
/trunk/classes/plugins/modifiercompiler.default.php |
---|
New file |
0,0 → 1,34 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty default modifier plugin |
* |
* Type: modifier<br> |
* Name: default<br> |
* Purpose: designate default value for empty variables |
* |
* @link http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_default ($params, $compiler) |
{ |
$output = $params[0]; |
if (!isset($params[1])) { |
$params[1] = "''"; |
} |
array_shift($params); |
foreach ($params as $param) { |
$output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $param . ' : $tmp)'; |
} |
return $output; |
} |
/trunk/classes/plugins/function.fetch.php |
---|
New file |
0,0 → 1,219 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {fetch} plugin |
* |
* Type: function<br> |
* Name: fetch<br> |
* Purpose: fetch file, web or ftp data and display results |
* |
* @link http://www.smarty.net/manual/en/language.function.fetch.php {fetch} |
* (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string|null if the assign parameter is passed, Smarty assigns the result to a template variable |
*/ |
function smarty_function_fetch($params, $template) |
{ |
if (empty($params['file'])) { |
trigger_error("[plugin] fetch parameter 'file' cannot be empty",E_USER_NOTICE); |
return; |
} |
// strip file protocol |
if (stripos($params['file'], 'file://') === 0) { |
$params['file'] = substr($params['file'], 7); |
} |
$protocol = strpos($params['file'], '://'); |
if ($protocol !== false) { |
$protocol = strtolower(substr($params['file'], 0, $protocol)); |
} |
if (isset($template->smarty->security_policy)) { |
if ($protocol) { |
// remote resource (or php stream, …) |
if (!$template->smarty->security_policy->isTrustedUri($params['file'])) { |
return; |
} |
} else { |
// local file |
if (!$template->smarty->security_policy->isTrustedResourceDir($params['file'])) { |
return; |
} |
} |
} |
$content = ''; |
if ($protocol == 'http') { |
// http fetch |
if ($uri_parts = parse_url($params['file'])) { |
// set defaults |
$host = $server_name = $uri_parts['host']; |
$timeout = 30; |
$accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*"; |
$agent = "Smarty Template Engine ". Plugin_Smarty_Smarty::SMARTY_VERSION; |
$referer = ""; |
$uri = !empty($uri_parts['path']) ? $uri_parts['path'] : '/'; |
$uri .= !empty($uri_parts['query']) ? '?' . $uri_parts['query'] : ''; |
$_is_proxy = false; |
if (empty($uri_parts['port'])) { |
$port = 80; |
} else { |
$port = $uri_parts['port']; |
} |
if (!empty($uri_parts['user'])) { |
$user = $uri_parts['user']; |
} |
if (!empty($uri_parts['pass'])) { |
$pass = $uri_parts['pass']; |
} |
// loop through parameters, setup headers |
foreach ($params as $param_key => $param_value) { |
switch ($param_key) { |
case "file": |
case "assign": |
case "assign_headers": |
break; |
case "user": |
if (!empty($param_value)) { |
$user = $param_value; |
} |
break; |
case "pass": |
if (!empty($param_value)) { |
$pass = $param_value; |
} |
break; |
case "accept": |
if (!empty($param_value)) { |
$accept = $param_value; |
} |
break; |
case "header": |
if (!empty($param_value)) { |
if (!preg_match('![\w\d-]+: .+!',$param_value)) { |
trigger_error("[plugin] invalid header format '".$param_value."'",E_USER_NOTICE); |
return; |
} else { |
$extra_headers[] = $param_value; |
} |
} |
break; |
case "proxy_host": |
if (!empty($param_value)) { |
$proxy_host = $param_value; |
} |
break; |
case "proxy_port": |
if (!preg_match('!\D!', $param_value)) { |
$proxy_port = (int) $param_value; |
} else { |
trigger_error("[plugin] invalid value for attribute '".$param_key."'",E_USER_NOTICE); |
return; |
} |
break; |
case "agent": |
if (!empty($param_value)) { |
$agent = $param_value; |
} |
break; |
case "referer": |
if (!empty($param_value)) { |
$referer = $param_value; |
} |
break; |
case "timeout": |
if (!preg_match('!\D!', $param_value)) { |
$timeout = (int) $param_value; |
} else { |
trigger_error("[plugin] invalid value for attribute '".$param_key."'",E_USER_NOTICE); |
return; |
} |
break; |
default: |
trigger_error("[plugin] unrecognized attribute '".$param_key."'",E_USER_NOTICE); |
return; |
} |
} |
if (!empty($proxy_host) && !empty($proxy_port)) { |
$_is_proxy = true; |
$fp = fsockopen($proxy_host,$proxy_port,$errno,$errstr,$timeout); |
} else { |
$fp = fsockopen($server_name,$port,$errno,$errstr,$timeout); |
} |
if (!$fp) { |
trigger_error("[plugin] unable to fetch: $errstr ($errno)",E_USER_NOTICE); |
return; |
} else { |
if ($_is_proxy) { |
fputs($fp, 'GET ' . $params['file'] . " HTTP/1.0\r\n"); |
} else { |
fputs($fp, "GET $uri HTTP/1.0\r\n"); |
} |
if (!empty($host)) { |
fputs($fp, "Host: $host\r\n"); |
} |
if (!empty($accept)) { |
fputs($fp, "Accept: $accept\r\n"); |
} |
if (!empty($agent)) { |
fputs($fp, "User-Agent: $agent\r\n"); |
} |
if (!empty($referer)) { |
fputs($fp, "Referer: $referer\r\n"); |
} |
if (isset($extra_headers) && is_array($extra_headers)) { |
foreach ($extra_headers as $curr_header) { |
fputs($fp, $curr_header."\r\n"); |
} |
} |
if (!empty($user) && !empty($pass)) { |
fputs($fp, "Authorization: BASIC ".base64_encode("$user:$pass")."\r\n"); |
} |
fputs($fp, "\r\n"); |
while (!feof($fp)) { |
$content .= fgets($fp,4096); |
} |
fclose($fp); |
$csplit = preg_split("!\r\n\r\n!",$content,2); |
$content = $csplit[1]; |
if (!empty($params['assign_headers'])) { |
$template->assign($params['assign_headers'],preg_split("!\r\n!",$csplit[0])); |
} |
} |
} else { |
trigger_error("[plugin fetch] unable to parse URL, check syntax",E_USER_NOTICE); |
return; |
} |
} else { |
$content = @file_get_contents($params['file']); |
if ($content === false) { |
throw new Plugin_Smarty_Exception("{fetch} cannot read resource '" . $params['file'] ."'"); |
} |
} |
if (!empty($params['assign'])) { |
$template->assign($params['assign'], $content); |
} else { |
return $content; |
} |
} |
/trunk/classes/plugins/function.math.php |
---|
New file |
0,0 → 1,90 |
<?php |
/** |
* Smarty plugin |
* |
* This plugin is only for Smarty2 BC |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {math} function plugin |
* |
* Type: function<br> |
* Name: math<br> |
* Purpose: handle math computations in template |
* |
* @link http://www.smarty.net/manual/en/language.function.math.php {math} |
* (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string|null |
*/ |
function smarty_function_math($params, $template) |
{ |
static $_allowed_funcs = array( |
'int' => true, 'abs' => true, 'ceil' => true, 'cos' => true, 'exp' => true, 'floor' => true, |
'log' => true, 'log10' => true, 'max' => true, 'min' => true, 'pi' => true, 'pow' => true, |
'rand' => true, 'round' => true, 'sin' => true, 'sqrt' => true, 'srand' => true ,'tan' => true |
); |
// be sure equation parameter is present |
if (empty($params['equation'])) { |
trigger_error("math: missing equation parameter",E_USER_WARNING); |
return; |
} |
$equation = $params['equation']; |
// make sure parenthesis are balanced |
if (substr_count($equation,"(") != substr_count($equation,")")) { |
trigger_error("math: unbalanced parenthesis",E_USER_WARNING); |
return; |
} |
// match all vars in equation, make sure all are passed |
preg_match_all("!(?:0x[a-fA-F0-9]+)|([a-zA-Z][a-zA-Z0-9_]*)!",$equation, $match); |
foreach ($match[1] as $curr_var) { |
if ($curr_var && !isset($params[$curr_var]) && !isset($_allowed_funcs[$curr_var])) { |
trigger_error("math: function call $curr_var not allowed",E_USER_WARNING); |
return; |
} |
} |
foreach ($params as $key => $val) { |
if ($key != "equation" && $key != "format" && $key != "assign") { |
// make sure value is not empty |
if (strlen($val)==0) { |
trigger_error("math: parameter $key is empty",E_USER_WARNING); |
return; |
} |
if (!is_numeric($val)) { |
trigger_error("math: parameter $key: is not numeric",E_USER_WARNING); |
return; |
} |
$equation = preg_replace("/\b$key\b/", " \$params['$key'] ", $equation); |
} |
} |
$smarty_math_result = null; |
eval("\$smarty_math_result = ".$equation.";"); |
if (empty($params['format'])) { |
if (empty($params['assign'])) { |
return $smarty_math_result; |
} else { |
$template->assign($params['assign'],$smarty_math_result); |
} |
} else { |
if (empty($params['assign'])) { |
printf($params['format'],$smarty_math_result); |
} else { |
$template->assign($params['assign'],sprintf($params['format'],$smarty_math_result)); |
} |
} |
} |
/trunk/classes/plugins/modifiercompiler.lower.php |
---|
New file |
0,0 → 1,29 |
<?php |
/** |
* Smarty plugin |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty lower modifier plugin |
* |
* Type: modifier<br> |
* Name: lower<br> |
* Purpose: convert string to lowercase |
* |
* @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_lower($params, $compiler) |
{ |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
return 'mb_strtolower(' . $params[0] . ', \'' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '\')' ; |
} |
// no MBString fallback |
return 'strtolower(' . $params[0] . ')'; |
} |
/trunk/classes/plugins/modifiercompiler.noprint.php |
---|
New file |
0,0 → 1,23 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty noprint modifier plugin |
* |
* Type: modifier<br> |
* Name: noprint<br> |
* Purpose: return an empty string |
* |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_noprint($params, $compiler) |
{ |
return "''"; |
} |
/trunk/classes/plugins/modifier.truncate.php |
---|
New file |
0,0 → 1,62 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifier |
*/ |
/** |
* Smarty truncate modifier plugin |
* |
* Type: modifier<br> |
* Name: truncate<br> |
* Purpose: Truncate a string to a certain length if necessary, |
* optionally splitting in the middle of a word, and |
* appending the $etc string or inserting $etc into the middle. |
* |
* @link http://smarty.php.net/manual/en/language.modifier.truncate.php truncate (Smarty online manual) |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string input string |
* @param integer $length length of truncated text |
* @param string $etc end string |
* @param boolean $break_words truncate at word boundary |
* @param boolean $middle truncate in the middle of text |
* @return string truncated string |
*/ |
function smarty_modifier_truncate($string, $length = 80, $etc = '...', $break_words = false, $middle = false) |
{ |
if ($length == 0) |
return ''; |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if (mb_strlen($string, Plugin_Smarty_Smarty::$_CHARSET) > $length) { |
$length -= min($length, mb_strlen($etc, Plugin_Smarty_Smarty::$_CHARSET)); |
if (!$break_words && !$middle) { |
$string = preg_replace('/\s+?(\S+)?$/' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, '', mb_substr($string, 0, $length + 1, Plugin_Smarty_Smarty::$_CHARSET)); |
} |
if (!$middle) { |
return mb_substr($string, 0, $length, Plugin_Smarty_Smarty::$_CHARSET) . $etc; |
} |
return mb_substr($string, 0, $length / 2, Plugin_Smarty_Smarty::$_CHARSET) . $etc . mb_substr($string, - $length / 2, $length, Plugin_Smarty_Smarty::$_CHARSET); |
} |
return $string; |
} |
// no MBString fallback |
if (isset($string[$length])) { |
$length -= min($length, strlen($etc)); |
if (!$break_words && !$middle) { |
$string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length + 1)); |
} |
if (!$middle) { |
return substr($string, 0, $length) . $etc; |
} |
return substr($string, 0, $length / 2) . $etc . substr($string, - $length / 2); |
} |
return $string; |
} |
/trunk/classes/plugins/modifiercompiler.to_charset.php |
---|
New file |
0,0 → 1,32 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty to_charset modifier plugin |
* |
* Type: modifier<br> |
* Name: to_charset<br> |
* Purpose: convert character encoding from internal encoding to $charset |
* |
* @author Rodney Rehm |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_to_charset($params, $compiler) |
{ |
if (!Plugin_Smarty_Smarty::$_MBSTRING) { |
// FIXME: (rodneyrehm) shouldn't this throw an error? |
return $params[0]; |
} |
if (!isset($params[1])) { |
$params[1] = '"ISO-8859-1"'; |
} |
return 'mb_convert_encoding(' . $params[0] . ', ' . $params[1] . ', "' . addslashes(Plugin_Smarty_Smarty::$_CHARSET) . '")'; |
} |
/trunk/classes/plugins/function.html_select_date.php |
---|
New file |
0,0 → 1,393 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* @ignore |
*/ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
/** |
* @ignore |
*/ |
require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); |
/** |
* Smarty {html_select_date} plugin |
* |
* Type: function<br> |
* Name: html_select_date<br> |
* Purpose: Prints the dropdowns for date selection. |
* |
* ChangeLog: |
* <pre> |
* - 1.0 initial release |
* - 1.1 added support for +/- N syntax for begin |
* and end year values. (Monte) |
* - 1.2 added support for yyyy-mm-dd syntax for |
* time value. (Jan Rosier) |
* - 1.3 added support for choosing format for |
* month values (Gary Loescher) |
* - 1.3.1 added support for choosing format for |
* day values (Marcus Bointon) |
* - 1.3.2 support negative timestamps, force year |
* dropdown to include given date unless explicitly set (Monte) |
* - 1.3.4 fix behaviour of 0000-00-00 00:00:00 dates to match that |
* of 0000-00-00 dates (cybot, boots) |
* - 2.0 complete rewrite for performance, |
* added attributes month_names, *_id |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.html.select.date.php {html_select_date} |
* (Smarty online manual) |
* @version 2.0 |
* @author Andrei Zmievski |
* @author Monte Ohrt <monte at ohrt dot com> |
* @author Rodney Rehm |
* @param array $params parameters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string |
*/ |
function smarty_function_html_select_date($params, $template) |
{ |
// generate timestamps used for month names only |
static $_month_timestamps = null; |
static $_current_year = null; |
if ($_month_timestamps === null) { |
$_current_year = date('Y'); |
$_month_timestamps = array(); |
for ($i = 1; $i <= 12; $i++) { |
$_month_timestamps[$i] = mktime(0, 0, 0, $i, 1, 2000); |
} |
} |
/* Default values. */ |
$prefix = "Date_"; |
$start_year = null; |
$end_year = null; |
$display_days = true; |
$display_months = true; |
$display_years = true; |
$month_format = "%B"; |
/* Write months as numbers by default GL */ |
$month_value_format = "%m"; |
$day_format = "%02d"; |
/* Write day values using this format MB */ |
$day_value_format = "%d"; |
$year_as_text = false; |
/* Display years in reverse order? Ie. 2000,1999,.... */ |
$reverse_years = false; |
/* Should the select boxes be part of an array when returned from PHP? |
e.g. setting it to "birthday", would create "birthday[Day]", |
"birthday[Month]" & "birthday[Year]". Can be combined with prefix */ |
$field_array = null; |
/* <select size>'s of the different <select> tags. |
If not set, uses default dropdown. */ |
$day_size = null; |
$month_size = null; |
$year_size = null; |
/* Unparsed attributes common to *ALL* the <select>/<input> tags. |
An example might be in the template: all_extra ='class ="foo"'. */ |
$all_extra = null; |
/* Separate attributes for the tags. */ |
$day_extra = null; |
$month_extra = null; |
$year_extra = null; |
/* Order in which to display the fields. |
"D" -> day, "M" -> month, "Y" -> year. */ |
$field_order = 'MDY'; |
/* String printed between the different fields. */ |
$field_separator = "\n"; |
$option_separator = "\n"; |
$time = null; |
// $all_empty = null; |
// $day_empty = null; |
// $month_empty = null; |
// $year_empty = null; |
$extra_attrs = ''; |
$all_id = null; |
$day_id = null; |
$month_id = null; |
$year_id = null; |
foreach ($params as $_key => $_value) { |
switch ($_key) { |
case 'time': |
if (!is_array($_value) && $_value !== null) { |
$time = smarty_make_timestamp($_value); |
} |
break; |
case 'month_names': |
if (is_array($_value) && count($_value) == 12) { |
$$_key = $_value; |
} else { |
trigger_error("html_select_date: month_names must be an array of 12 strings", E_USER_NOTICE); |
} |
break; |
case 'prefix': |
case 'field_array': |
case 'start_year': |
case 'end_year': |
case 'day_format': |
case 'day_value_format': |
case 'month_format': |
case 'month_value_format': |
case 'day_size': |
case 'month_size': |
case 'year_size': |
case 'all_extra': |
case 'day_extra': |
case 'month_extra': |
case 'year_extra': |
case 'field_order': |
case 'field_separator': |
case 'option_separator': |
case 'all_empty': |
case 'month_empty': |
case 'day_empty': |
case 'year_empty': |
case 'all_id': |
case 'month_id': |
case 'day_id': |
case 'year_id': |
$$_key = (string) $_value; |
break; |
case 'display_days': |
case 'display_months': |
case 'display_years': |
case 'year_as_text': |
case 'reverse_years': |
$$_key = (bool) $_value; |
break; |
default: |
if (!is_array($_value)) { |
$extra_attrs .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_value) . '"'; |
} else { |
trigger_error("html_select_date: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
// Note: date() is faster than strftime() |
// Note: explode(date()) is faster than date() date() date() |
if (isset($params['time']) && is_array($params['time'])) { |
if (isset($params['time'][$prefix . 'Year'])) { |
// $_REQUEST[$field_array] given |
foreach (array('Y' => 'Year', 'm' => 'Month', 'd' => 'Day') as $_elementKey => $_elementName) { |
$_variableName = '_' . strtolower($_elementName); |
$$_variableName = isset($params['time'][$prefix . $_elementName]) |
? $params['time'][$prefix . $_elementName] |
: date($_elementKey); |
} |
$time = mktime(0, 0, 0, $_month, $_day, $_year); |
} elseif (isset($params['time'][$field_array][$prefix . 'Year'])) { |
// $_REQUEST given |
foreach (array('Y' => 'Year', 'm' => 'Month', 'd' => 'Day') as $_elementKey => $_elementName) { |
$_variableName = '_' . strtolower($_elementName); |
$$_variableName = isset($params['time'][$field_array][$prefix . $_elementName]) |
? $params['time'][$field_array][$prefix . $_elementName] |
: date($_elementKey); |
} |
$time = mktime(0, 0, 0, $_month, $_day, $_year); |
} else { |
// no date found, use NOW |
list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d')); |
} |
} elseif ($time === null) { |
if (array_key_exists('time', $params)) { |
$_year = $_month = $_day = $time = null; |
} else { |
list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d')); |
} |
} else { |
list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d', $time)); |
} |
// make syntax "+N" or "-N" work with $start_year and $end_year |
// Note preg_match('!^(\+|\-)\s*(\d+)$!', $end_year, $match) is slower than trim+substr |
foreach (array('start', 'end') as $key) { |
$key .= '_year'; |
$t = $$key; |
if ($t === null) { |
$$key = (int) $_current_year; |
} elseif ($t[0] == '+') { |
$$key = (int) ($_current_year + trim(substr($t, 1))); |
} elseif ($t[0] == '-') { |
$$key = (int) ($_current_year - trim(substr($t, 1))); |
} else { |
$$key = (int) $$key; |
} |
} |
// flip for ascending or descending |
if (($start_year > $end_year && !$reverse_years) || ($start_year < $end_year && $reverse_years)) { |
$t = $end_year; |
$end_year = $start_year; |
$start_year = $t; |
} |
// generate year <select> or <input> |
if ($display_years) { |
$_html_years = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Year]') : ($prefix . 'Year'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($year_extra) { |
$_extra .= ' ' . $year_extra; |
} |
if ($year_as_text) { |
$_html_years = '<input type="text" name="' . $_name . '" value="' . $_year . '" size="4" maxlength="4"' . $_extra . $extra_attrs . ' />'; |
} else { |
$_html_years = '<select name="' . $_name . '"'; |
if ($year_id !== null || $all_id !== null) { |
$_html_years .= ' id="' . smarty_function_escape_special_chars( |
$year_id !== null ? ( $year_id ? $year_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($year_size) { |
$_html_years .= ' size="' . $year_size . '"'; |
} |
$_html_years .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($year_empty) || isset($all_empty)) { |
$_html_years .= '<option value="">' . ( isset($year_empty) ? $year_empty : $all_empty ) . '</option>' . $option_separator; |
} |
$op = $start_year > $end_year ? -1 : 1; |
for ($i=$start_year; $op > 0 ? $i <= $end_year : $i >= $end_year; $i += $op) { |
$_html_years .= '<option value="' . $i . '"' |
. ($_year == $i ? ' selected="selected"' : '') |
. '>' . $i . '</option>' . $option_separator; |
} |
$_html_years .= '</select>'; |
} |
} |
// generate month <select> or <input> |
if ($display_months) { |
$_html_month = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Month]') : ($prefix . 'Month'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($month_extra) { |
$_extra .= ' ' . $month_extra; |
} |
$_html_months = '<select name="' . $_name . '"'; |
if ($month_id !== null || $all_id !== null) { |
$_html_months .= ' id="' . smarty_function_escape_special_chars( |
$month_id !== null ? ( $month_id ? $month_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($month_size) { |
$_html_months .= ' size="' . $month_size . '"'; |
} |
$_html_months .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($month_empty) || isset($all_empty)) { |
$_html_months .= '<option value="">' . ( isset($month_empty) ? $month_empty : $all_empty ) . '</option>' . $option_separator; |
} |
for ($i = 1; $i <= 12; $i++) { |
$_val = sprintf('%02d', $i); |
$_text = isset($month_names) ? smarty_function_escape_special_chars($month_names[$i]) : ($month_format == "%m" ? $_val : strftime($month_format, $_month_timestamps[$i])); |
$_value = $month_value_format == "%m" ? $_val : strftime($month_value_format, $_month_timestamps[$i]); |
$_html_months .= '<option value="' . $_value . '"' |
. ($_val == $_month ? ' selected="selected"' : '') |
. '>' . $_text . '</option>' . $option_separator; |
} |
$_html_months .= '</select>'; |
} |
// generate day <select> or <input> |
if ($display_days) { |
$_html_day = ''; |
$_extra = ''; |
$_name = $field_array ? ($field_array . '[' . $prefix . 'Day]') : ($prefix . 'Day'); |
if ($all_extra) { |
$_extra .= ' ' . $all_extra; |
} |
if ($day_extra) { |
$_extra .= ' ' . $day_extra; |
} |
$_html_days = '<select name="' . $_name . '"'; |
if ($day_id !== null || $all_id !== null) { |
$_html_days .= ' id="' . smarty_function_escape_special_chars( |
$day_id !== null ? ( $day_id ? $day_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name ) |
) . '"'; |
} |
if ($day_size) { |
$_html_days .= ' size="' . $day_size . '"'; |
} |
$_html_days .= $_extra . $extra_attrs . '>' . $option_separator; |
if (isset($day_empty) || isset($all_empty)) { |
$_html_days .= '<option value="">' . ( isset($day_empty) ? $day_empty : $all_empty ) . '</option>' . $option_separator; |
} |
for ($i = 1; $i <= 31; $i++) { |
$_val = sprintf('%02d', $i); |
$_text = $day_format == '%02d' ? $_val : sprintf($day_format, $i); |
$_value = $day_value_format == '%02d' ? $_val : sprintf($day_value_format, $i); |
$_html_days .= '<option value="' . $_value . '"' |
. ($_val == $_day ? ' selected="selected"' : '') |
. '>' . $_text . '</option>' . $option_separator; |
} |
$_html_days .= '</select>'; |
} |
// order the fields for output |
$_html = ''; |
for ($i=0; $i <= 2; $i++) { |
switch ($field_order[$i]) { |
case 'Y': |
case 'y': |
if (isset($_html_years)) { |
if ($_html) { |
$_html .= $field_separator; |
} |
$_html .= $_html_years; |
} |
break; |
case 'm': |
case 'M': |
if (isset($_html_months)) { |
if ($_html) { |
$_html .= $field_separator; |
} |
$_html .= $_html_months; |
} |
break; |
case 'd': |
case 'D': |
if (isset($_html_days)) { |
if ($_html) { |
$_html .= $field_separator; |
} |
$_html .= $_html_days; |
} |
break; |
} |
} |
return $_html; |
} |
/trunk/classes/plugins/shared.escape_special_chars.php |
---|
New file |
0,0 → 1,51 |
<?php |
/** |
* Smarty shared plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
if (version_compare(PHP_VERSION, '5.2.3', '>=')) { |
/** |
* escape_special_chars common function |
* |
* Function: smarty_function_escape_special_chars<br> |
* Purpose: used by other smarty functions to escape |
* special chars except for already escaped ones |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string text that should by escaped |
* @return string |
*/ |
function smarty_function_escape_special_chars($string) |
{ |
if (!is_array($string)) { |
$string = htmlspecialchars($string, ENT_COMPAT, Plugin_Smarty_Smarty::$_CHARSET, false); |
} |
return $string; |
} |
} else { |
/** |
* escape_special_chars common function |
* |
* Function: smarty_function_escape_special_chars<br> |
* Purpose: used by other smarty functions to escape |
* special chars except for already escaped ones |
* |
* @author Monte Ohrt <monte at ohrt dot com> |
* @param string $string text that should by escaped |
* @return string |
*/ |
function smarty_function_escape_special_chars($string) |
{ |
if (!is_array($string)) { |
$string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); |
$string = htmlspecialchars($string); |
$string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); |
} |
return $string; |
} |
} |
/trunk/classes/plugins/function.html_checkboxes.php |
---|
New file |
0,0 → 1,235 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsFunction |
*/ |
/** |
* Smarty {html_checkboxes} function plugin |
* |
* File: function.html_checkboxes.php<br> |
* Type: function<br> |
* Name: html_checkboxes<br> |
* Date: 24.Feb.2003<br> |
* Purpose: Prints out a list of checkbox input types<br> |
* Examples: |
* <pre> |
* {html_checkboxes values=$ids output=$names} |
* {html_checkboxes values=$ids name='box' separator='<br>' output=$names} |
* {html_checkboxes values=$ids checked=$checked separator='<br>' output=$names} |
* </pre> |
* Params: |
* <pre> |
* - name (optional) - string default "checkbox" |
* - values (required) - array |
* - options (optional) - associative array |
* - checked (optional) - array default not set |
* - separator (optional) - ie <br> or |
* - output (optional) - the output next to each checkbox |
* - assign (optional) - assign the output as an array to this variable |
* - escape (optional) - escape the content (not value), defaults to true |
* </pre> |
* |
* @link http://www.smarty.net/manual/en/language.function.html.checkboxes.php {html_checkboxes} |
* (Smarty online manual) |
* @author Christopher Kvarme <christopher.kvarme@flashjab.com> |
* @author credits to Monte Ohrt <monte at ohrt dot com> |
* @version 1.0 |
* @param array $params parameters |
* @param object $template template object |
* @return string |
* @uses smarty_function_escape_special_chars() |
*/ |
function smarty_function_html_checkboxes($params, $template) |
{ |
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); |
$name = 'checkbox'; |
$values = null; |
$options = null; |
$selected = array(); |
$separator = ''; |
$escape = true; |
$labels = true; |
$label_ids = false; |
$output = null; |
$extra = ''; |
foreach ($params as $_key => $_val) { |
switch ($_key) { |
case 'name': |
case 'separator': |
$$_key = (string) $_val; |
break; |
case 'escape': |
case 'labels': |
case 'label_ids': |
$$_key = (bool) $_val; |
break; |
case 'options': |
$$_key = (array) $_val; |
break; |
case 'values': |
case 'output': |
$$_key = array_values((array) $_val); |
break; |
case 'checked': |
case 'selected': |
if (is_array($_val)) { |
$selected = array(); |
foreach ($_val as $_sel) { |
if (is_object($_sel)) { |
if (method_exists($_sel, "__toString")) { |
$_sel = smarty_function_escape_special_chars((string) $_sel->__toString()); |
} else { |
trigger_error("html_checkboxes: selected attribute contains an object of class '". get_class($_sel) ."' without __toString() method", E_USER_NOTICE); |
continue; |
} |
} else { |
$_sel = smarty_function_escape_special_chars((string) $_sel); |
} |
$selected[$_sel] = true; |
} |
} elseif (is_object($_val)) { |
if (method_exists($_val, "__toString")) { |
$selected = smarty_function_escape_special_chars((string) $_val->__toString()); |
} else { |
trigger_error("html_checkboxes: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE); |
} |
} else { |
$selected = smarty_function_escape_special_chars((string) $_val); |
} |
break; |
case 'checkboxes': |
trigger_error('html_checkboxes: the use of the "checkboxes" attribute is deprecated, use "options" instead', E_USER_WARNING); |
$options = (array) $_val; |
break; |
case 'assign': |
break; |
case 'strict': break; |
case 'disabled': |
case 'readonly': |
if (!empty($params['strict'])) { |
if (!is_scalar($_val)) { |
trigger_error("html_options: $_key attribute must be a scalar, only boolean true or string '$_key' will actually add the attribute", E_USER_NOTICE); |
} |
if ($_val === true || $_val === $_key) { |
$extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_key) . '"'; |
} |
break; |
} |
// omit break; to fall through! |
default: |
if (!is_array($_val)) { |
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"'; |
} else { |
trigger_error("html_checkboxes: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
} |
break; |
} |
} |
if (!isset($options) && !isset($values)) |
return ''; /* raise error here? */ |
$_html_result = array(); |
if (isset($options)) { |
foreach ($options as $_key=>$_val) { |
$_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids, $escape); |
} |
} else { |
foreach ($values as $_i=>$_key) { |
$_val = isset($output[$_i]) ? $output[$_i] : ''; |
$_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids, $escape); |
} |
} |
if (!empty($params['assign'])) { |
$template->assign($params['assign'], $_html_result); |
} else { |
return implode("\n", $_html_result); |
} |
} |
function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids, $escape=true) |
{ |
$_output = ''; |
if (is_object($value)) { |
if (method_exists($value, "__toString")) { |
$value = (string) $value->__toString(); |
} else { |
trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE); |
return ''; |
} |
} else { |
$value = (string) $value; |
} |
if (is_object($output)) { |
if (method_exists($output, "__toString")) { |
$output = (string) $output->__toString(); |
} else { |
trigger_error("html_options: output is an object of class '". get_class($output) ."' without __toString() method", E_USER_NOTICE); |
return ''; |
} |
} else { |
$output = (string) $output; |
} |
if ($labels) { |
if ($label_ids) { |
$_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, '_', $name . '_' . $value)); |
$_output .= '<label for="' . $_id . '">'; |
} else { |
$_output .= '<label>'; |
} |
} |
$name = smarty_function_escape_special_chars($name); |
$value = smarty_function_escape_special_chars($value); |
if ($escape) { |
$output = smarty_function_escape_special_chars($output); |
} |
$_output .= '<input type="checkbox" name="' . $name . '[]" value="' . $value . '"'; |
if ($labels && $label_ids) { |
$_output .= ' id="' . $_id . '"'; |
} |
if (is_array($selected)) { |
if (isset($selected[$value])) { |
$_output .= ' checked="checked"'; |
} |
} elseif ($value === $selected) { |
$_output .= ' checked="checked"'; |
} |
$_output .= $extra . ' />' . $output; |
if ($labels) { |
$_output .= '</label>'; |
} |
$_output .= $separator; |
return $_output; |
} |
/trunk/classes/plugins/shared.mb_str_replace.php |
---|
New file |
0,0 → 1,55 |
<?php |
/** |
* Smarty shared plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
if (!function_exists('smarty_mb_str_replace')) { |
/** |
* Multibyte string replace |
* |
* @param string $search the string to be searched |
* @param string $replace the replacement string |
* @param string $subject the source string |
* @param int &$count number of matches found |
* @return string replaced string |
* @author Rodney Rehm |
*/ |
function smarty_mb_str_replace($search, $replace, $subject, &$count=0) |
{ |
if (!is_array($search) && is_array($replace)) { |
return false; |
} |
if (is_array($subject)) { |
// call mb_replace for each single string in $subject |
foreach ($subject as &$string) { |
$string = &smarty_mb_str_replace($search, $replace, $string, $c); |
$count += $c; |
} |
} elseif (is_array($search)) { |
if (!is_array($replace)) { |
foreach ($search as &$string) { |
$subject = smarty_mb_str_replace($string, $replace, $subject, $c); |
$count += $c; |
} |
} else { |
$n = max(count($search), count($replace)); |
while ($n--) { |
$subject = smarty_mb_str_replace(current($search), current($replace), $subject, $c); |
$count += $c; |
next($search); |
next($replace); |
} |
} |
} else { |
$parts = mb_split(preg_quote($search), $subject); |
$count = count($parts) - 1; |
$subject = implode($replace, $parts); |
} |
return $subject; |
} |
} |
/trunk/classes/plugins/modifiercompiler.escape.php |
---|
New file |
0,0 → 1,124 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* @ignore |
*/ |
require_once( SMARTY_PLUGINS_DIR .'shared.literal_compiler_param.php' ); |
/** |
* Smarty escape modifier plugin |
* |
* Type: modifier<br> |
* Name: escape<br> |
* 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 |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_escape($params, $compiler) |
{ |
static $_double_encode = null; |
if ($_double_encode === null) { |
$_double_encode = version_compare(PHP_VERSION, '5.2.3', '>='); |
} |
try { |
$esc_type = smarty_literal_compiler_param($params, 1, 'html'); |
$char_set = smarty_literal_compiler_param($params, 2, Plugin_Smarty_Smarty::$_CHARSET); |
$double_encode = smarty_literal_compiler_param($params, 3, true); |
if (!$char_set) { |
$char_set = Plugin_Smarty_Smarty::$_CHARSET; |
} |
switch ($esc_type) { |
case 'html': |
if ($_double_encode) { |
return 'htmlspecialchars(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) . ', ' |
. var_export($double_encode, true) . ')'; |
} elseif ($double_encode) { |
return 'htmlspecialchars(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) . ')'; |
} else { |
// fall back to modifier.escape.php |
} |
case 'htmlall': |
if (Plugin_Smarty_Smarty::$_MBSTRING) { |
if ($_double_encode) { |
// php >=5.2.3 - go native |
return 'mb_convert_encoding(htmlspecialchars(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) . ', ' |
. var_export($double_encode, true) |
. '), "HTML-ENTITIES", ' |
. var_export($char_set, true) . ')'; |
} elseif ($double_encode) { |
// php <5.2.3 - only handle double encoding |
return 'mb_convert_encoding(htmlspecialchars(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) |
. '), "HTML-ENTITIES", ' |
. var_export($char_set, true) . ')'; |
} else { |
// fall back to modifier.escape.php |
} |
} |
// no MBString fallback |
if ($_double_encode) { |
// php >=5.2.3 - go native |
return 'htmlentities(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) . ', ' |
. var_export($double_encode, true) . ')'; |
} elseif ($double_encode) { |
// php <5.2.3 - only handle double encoding |
return 'htmlentities(' |
. $params[0] .', ENT_QUOTES, ' |
. var_export($char_set, true) . ')'; |
} else { |
// fall back to modifier.escape.php |
} |
case 'url': |
return 'rawurlencode(' . $params[0] . ')'; |
case 'urlpathinfo': |
return 'str_replace("%2F", "/", rawurlencode(' . $params[0] . '))'; |
case 'quotes': |
// escape unescaped single quotes |
return 'preg_replace("%(?<!\\\\\\\\)\'%", "\\\'",' . $params[0] . ')'; |
case 'javascript': |
// escape quotes and backslashes, newlines, etc. |
return 'strtr(' . $params[0] . ', array("\\\\" => "\\\\\\\\", "\'" => "\\\\\'", "\"" => "\\\\\"", "\\r" => "\\\\r", "\\n" => "\\\n", "</" => "<\/" ))'; |
} |
} catch (Plugin_Smarty_Exception $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->template->required_plugins['nocache']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php'; |
$compiler->template->required_plugins['nocache']['escape']['modifier']['function'] = 'smarty_modifier_escape'; |
} else { |
$compiler->template->required_plugins['compiled']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php'; |
$compiler->template->required_plugins['compiled']['escape']['modifier']['function'] = 'smarty_modifier_escape'; |
} |
return 'smarty_modifier_escape(' . join( ', ', $params ) . ')'; |
} |
/trunk/classes/plugins/modifiercompiler.count_paragraphs.php |
---|
New file |
0,0 → 1,26 |
<?php |
/** |
* Smarty plugin |
* |
* @package Smarty |
* @subpackage PluginsModifierCompiler |
*/ |
/** |
* Smarty count_paragraphs modifier plugin |
* |
* Type: modifier<br> |
* Name: count_paragraphs<br> |
* Purpose: count the number of paragraphs in a text |
* |
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php |
* count_paragraphs (Smarty online manual) |
* @author Uwe Tews |
* @param array $params parameters |
* @return string with compiled code |
*/ |
function smarty_modifiercompiler_count_paragraphs($params, $compiler) |
{ |
// count \r or \n characters |
return '(preg_match_all(\'#[\r\n]+#\', ' . $params[0] . ', $tmp)+1)'; |
} |
/trunk/classes/plugins/shared.mb_wordwrap.php |
---|
New file |
0,0 → 1,82 |
<?php |
/** |
* Smarty shared plugin |
* |
* @package Smarty |
* @subpackage PluginsShared |
*/ |
if (!function_exists('smarty_mb_wordwrap')) { |
/** |
* Wrap a string to a given number of characters |
* |
* @link http://php.net/manual/en/function.wordwrap.php for similarity |
* @param string $str the string to wrap |
* @param int $width the width of the output |
* @param string $break the character used to break the line |
* @param boolean $cut ignored parameter, just for the sake of |
* @return string wrapped string |
* @author Rodney Rehm |
*/ |
function smarty_mb_wordwrap($str, $width=75, $break="\n", $cut=false) |
{ |
// break words into tokens using white space as a delimiter |
$tokens = preg_split('!(\s)!S' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $str, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE); |
$length = 0; |
$t = ''; |
$_previous = false; |
foreach ($tokens as $_token) { |
$token_length = mb_strlen($_token, Plugin_Smarty_Smarty::$_CHARSET); |
$_tokens = array($_token); |
if ($token_length > $width) { |
// remove last space |
$t = mb_substr($t, 0, -1, Plugin_Smarty_Smarty::$_CHARSET); |
$_previous = false; |
$length = 0; |
if ($cut) { |
$_tokens = preg_split('!(.{' . $width . '})!S' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $_token, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE); |
// broken words go on a new line |
$t .= $break; |
} |
} |
foreach ($_tokens as $token) { |
$_space = !!preg_match('!^\s$!S' . Plugin_Smarty_Smarty::$_UTF8_MODIFIER, $token); |
$token_length = mb_strlen($token, Plugin_Smarty_Smarty::$_CHARSET); |
$length += $token_length; |
if ($length > $width) { |
// remove space before inserted break |
if ($_previous && $token_length < $width) { |
$t = mb_substr($t, 0, -1, Plugin_Smarty_Smarty::$_CHARSET); |
} |
// add the break before the token |
$t .= $break; |
$length = $token_length; |
// skip space after inserting a break |
if ($_space) { |
$length = 0; |
continue; |
} |
} elseif ($token == "\n") { |
// hard break must reset counters |
$_previous = 0; |
$length = 0; |
} else { |
// remember if we had a space or not |
$_previous = $_space; |
} |
// add the token |
$t .= $token; |
} |
} |
return $t; |
} |
} |
/trunk/classes/resourcerecompiled.php |
---|
New file |
0,0 → 1,34 |
<?php |
/** |
* Smarty Resource Plugin |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Rodney Rehm |
*/ |
/** |
* Smarty Resource Plugin |
* |
* Base implementation for resource plugins that don't compile cache |
* |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
abstract class Plugin_Smarty_ResourceRecompiled extends Plugin_Smarty_Resource |
{ |
/** |
* populate Compiled Object with compiled filepath |
* |
* @param Plugin_Smarty_TemplateCompiled $compiled compiled object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populateCompiledFilepath(Plugin_Smarty_TemplateCompiled $compiled, Plugin_Smarty_InternalTemplate $_template) |
{ |
$compiled->filepath = false; |
$compiled->timestamp = false; |
$compiled->exists = false; |
} |
} |
/trunk/classes/internalcompilenocacheclose.php |
---|
New file |
0,0 → 1,33 |
<?php |
/** |
* Smarty Internal Plugin Compile Nocacheclose Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileNocacheclose extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {/nocache} tag |
* |
* This tag does not generate compiled output. It only sets a compiler flag. |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return bool |
*/ |
public function compile($args, $compiler) |
{ |
$_attr = $this->getAttributes($compiler, $args); |
if ($compiler->template->caching) { |
// restore old nocache mode |
$compiler->nocache = $this->closeTag($compiler, 'nocache'); |
} |
// this tag does not return compiled code |
$compiler->has_code = false; |
return true; |
} |
} |
/trunk/classes/internalcompileeval.php |
---|
New file |
0,0 → 1,72 |
<?php |
/** |
* Smarty Internal Plugin Compile Eval |
* |
* Compiles the {eval} tag. |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Eval Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileEval extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $required_attributes = array('var'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('assign'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('var','assign'); |
/** |
* Compiles code for the {eval} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
$this->required_attributes = array('var'); |
$this->optional_attributes = array('assign'); |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if (isset($_attr['assign'])) { |
// output will be stored in a smarty variable instead of beind displayed |
$_assign = $_attr['assign']; |
} |
// create template object |
$_output = "\$_template = new {$compiler->smarty->template_class}('eval:'.".$_attr['var'].", \$_smarty_tpl->smarty, \$_smarty_tpl);"; |
//was there an assign attribute? |
if (isset($_assign)) { |
$_output .= "\$_smarty_tpl->assign($_assign,\$_template->fetch());"; |
} else { |
$_output .= "echo \$_template->fetch();"; |
} |
return "<?php $_output ?>"; |
} |
} |
/trunk/classes/cacheresourcekeyvaluestore.php |
---|
New file |
0,0 → 1,472 |
<?php |
/** |
* Smarty Internal Plugin |
* |
* @package Smarty |
* @subpackage Cacher |
*/ |
/** |
* Smarty Cache Handler Base for Key/Value Storage Implementations |
* |
* This class implements the functionality required to use simple key/value stores |
* for hierarchical cache groups. key/value stores like memcache or APC do not support |
* wildcards in keys, therefore a cache group cannot be cleared like "a|*" - which |
* is no problem to filesystem and RDBMS implementations. |
* |
* This implementation is based on the concept of invalidation. While one specific cache |
* can be identified and cleared, any range of caches cannot be identified. For this reason |
* each level of the cache group hierarchy can have its own value in the store. These values |
* are nothing but microtimes, telling us when a particular cache group was cleared for the |
* last time. These keys are evaluated for every cache read to determine if the cache has |
* been invalidated since it was created and should hence be treated as inexistent. |
* |
* Although deep hierarchies are possible, they are not recommended. Try to keep your |
* cache groups as shallow as possible. Anything up 3-5 parents should be ok. So |
* »a|b|c« is a good depth where »a|b|c|d|e|f|g|h|i|j|k« isn't. Try to join correlating |
* cache groups: if your cache groups look somewhat like »a|b|$page|$items|$whatever« |
* consider using »a|b|c|$page-$items-$whatever« instead. |
* |
* @package Smarty |
* @subpackage Cacher |
* @author Rodney Rehm |
*/ |
abstract class Plugin_Smarty_CacheResourceKeyValueStore extends Smarty_CacheResource |
{ |
/** |
* cache for contents |
* @var array |
*/ |
protected $contents = array(); |
/** |
* cache for timestamps |
* @var array |
*/ |
protected $timestamps = array(); |
/** |
* populate Cached Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populate(Plugin_Smarty_TemplateCached $cached, Plugin_Smarty_InternalTemplate $_template) |
{ |
$cached->filepath = $_template->source->uid |
. '#' . $this->sanitize($cached->source->name) |
. '#' . $this->sanitize($cached->cache_id) |
. '#' . $this->sanitize($cached->compile_id); |
$this->populateTimestamp($cached); |
} |
/** |
* populate Cached Object with timestamp and exists from Resource |
* |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return void |
*/ |
public function populateTimestamp(Plugin_Smarty_TemplateCached $cached) |
{ |
if (!$this->fetch($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id, $content, $timestamp, $cached->source->uid)) { |
return; |
} |
$cached->content = $content; |
$cached->timestamp = (int) $timestamp; |
$cached->exists = $cached->timestamp; |
} |
/** |
* Read the cached template and process the header |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return booelan true or false if the cached content does not exist |
*/ |
public function process(Plugin_Smarty_InternalTemplate $_template, Plugin_Smarty_TemplateCached $cached=null) |
{ |
if (!$cached) { |
$cached = $_template->cached; |
} |
$content = $cached->content ? $cached->content : null; |
$timestamp = $cached->timestamp ? $cached->timestamp : null; |
if ($content === null || !$timestamp) { |
if (!$this->fetch($_template->cached->filepath, $_template->source->name, $_template->cache_id, $_template->compile_id, $content, $timestamp, $_template->source->uid)) { |
return false; |
} |
} |
if (isset($content)) { |
$_smarty_tpl = $_template; |
eval("?>" . $content); |
return true; |
} |
return false; |
} |
/** |
* Write the rendered template output to cache |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param string $content content to cache |
* @return boolean success |
*/ |
public function writeCachedContent(Plugin_Smarty_InternalTemplate $_template, $content) |
{ |
$this->addMetaTimestamp($content); |
return $this->write(array($_template->cached->filepath => $content), $_template->properties['cache_lifetime']); |
} |
/** |
* Empty cache |
* |
* {@internal the $exp_time argument is ignored altogether }} |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param integer $exp_time expiration time [being ignored] |
* @return integer number of cache files deleted [always -1] |
* @uses purge() to clear the whole store |
* @uses invalidate() to mark everything outdated if purge() is inapplicable |
*/ |
public function clearAll(Plugin_Smarty_Smarty $smarty, $exp_time=null) |
{ |
if (!$this->purge()) { |
$this->invalidate(null); |
} |
return -1; |
} |
/** |
* Empty cache for a specific template |
* |
* {@internal the $exp_time argument is ignored altogether}} |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param integer $exp_time expiration time [being ignored] |
* @return integer number of cache files deleted [always -1] |
* @uses buildCachedFilepath() to generate the CacheID |
* @uses invalidate() to mark CacheIDs parent chain as outdated |
* @uses delete() to remove CacheID from cache |
*/ |
public function clear(Plugin_Smarty_Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time) |
{ |
$uid = $this->getTemplateUid($smarty, $resource_name, $cache_id, $compile_id); |
$cid = $uid . '#' . $this->sanitize($resource_name) . '#' . $this->sanitize($cache_id) . '#' . $this->sanitize($compile_id); |
$this->delete(array($cid)); |
$this->invalidate($cid, $resource_name, $cache_id, $compile_id, $uid); |
return -1; |
} |
/** |
* Get template's unique ID |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @return string filepath of cache file |
*/ |
protected function getTemplateUid(Plugin_Smarty_Smarty $smarty, $resource_name, $cache_id, $compile_id) |
{ |
$uid = ''; |
if (isset($resource_name)) { |
$tpl = new $smarty->template_class($resource_name, $smarty); |
if ($tpl->source->exists) { |
$uid = $tpl->source->uid; |
} |
// remove from template cache |
if ($smarty->allow_ambiguous_resources) { |
$_templateId = $tpl->source->unique_resource . $tpl->cache_id . $tpl->compile_id; |
} else { |
$_templateId = $smarty->joined_template_dir . '#' . $resource_name . $tpl->cache_id . $tpl->compile_id; |
} |
if (isset($_templateId[150])) { |
$_templateId = sha1($_templateId); |
} |
unset($smarty->template_objects[$_templateId]); |
} |
return $uid; |
} |
/** |
* Sanitize CacheID components |
* |
* @param string $string CacheID component to sanitize |
* @return string sanitized CacheID component |
*/ |
protected function sanitize($string) |
{ |
// some poeple smoke bad weed |
$string = trim($string, '|'); |
if (!$string) { |
return null; |
} |
return preg_replace('#[^\w\|]+#S', '_', $string); |
} |
/** |
* Fetch and prepare a cache object. |
* |
* @param string $cid CacheID to fetch |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param string $content cached content |
* @param integer &$timestamp cached timestamp (epoch) |
* @param string $resource_uid resource's uid |
* @return boolean success |
*/ |
protected function fetch($cid, $resource_name = null, $cache_id = null, $compile_id = null, &$content = null, &$timestamp = null, $resource_uid = null) |
{ |
$t = $this->read(array($cid)); |
$content = !empty($t[$cid]) ? $t[$cid] : null; |
$timestamp = null; |
if ($content && ($timestamp = $this->getMetaTimestamp($content))) { |
$invalidated = $this->getLatestInvalidationTimestamp($cid, $resource_name, $cache_id, $compile_id, $resource_uid); |
if ($invalidated > $timestamp) { |
$timestamp = null; |
$content = null; |
} |
} |
return !!$content; |
} |
/** |
* Add current microtime to the beginning of $cache_content |
* |
* {@internal the header uses 8 Bytes, the first 4 Bytes are the seconds, the second 4 Bytes are the microseconds}} |
* |
* @param string &$content the content to be cached |
*/ |
protected function addMetaTimestamp(&$content) |
{ |
$mt = explode(" ", microtime()); |
$ts = pack("NN", $mt[1], (int) ($mt[0] * 100000000)); |
$content = $ts . $content; |
} |
/** |
* Extract the timestamp the $content was cached |
* |
* @param string &$content the cached content |
* @return float the microtime the content was cached |
*/ |
protected function getMetaTimestamp(&$content) |
{ |
$s = unpack("N", substr($content, 0, 4)); |
$m = unpack("N", substr($content, 4, 4)); |
$content = substr($content, 8); |
return $s[1] + ($m[1] / 100000000); |
} |
/** |
* Invalidate CacheID |
* |
* @param string $cid CacheID |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param string $resource_uid source's uid |
* @return void |
*/ |
protected function invalidate($cid = null, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null) |
{ |
$now = microtime(true); |
$key = null; |
// invalidate everything |
if (!$resource_name && !$cache_id && !$compile_id) { |
$key = 'IVK#ALL'; |
} |
// invalidate all caches by template |
else if ($resource_name && !$cache_id && !$compile_id) { |
$key = 'IVK#TEMPLATE#' . $resource_uid . '#' . $this->sanitize($resource_name); |
} |
// invalidate all caches by cache group |
else if (!$resource_name && $cache_id && !$compile_id) { |
$key = 'IVK#CACHE#' . $this->sanitize($cache_id); |
} |
// invalidate all caches by compile id |
else if (!$resource_name && !$cache_id && $compile_id) { |
$key = 'IVK#COMPILE#' . $this->sanitize($compile_id); |
} |
// invalidate by combination |
else { |
$key = 'IVK#CID#' . $cid; |
} |
$this->write(array($key => $now)); |
} |
/** |
* Determine the latest timestamp known to the invalidation chain |
* |
* @param string $cid CacheID to determine latest invalidation timestamp of |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param string $resource_uid source's filepath |
* @return float the microtime the CacheID was invalidated |
*/ |
protected function getLatestInvalidationTimestamp($cid, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null) |
{ |
// abort if there is no CacheID |
if (false && !$cid) { |
return 0; |
} |
// abort if there are no InvalidationKeys to check |
if (!($_cid = $this->listInvalidationKeys($cid, $resource_name, $cache_id, $compile_id, $resource_uid))) { |
return 0; |
} |
// there are no InValidationKeys |
if (!($values = $this->read($_cid))) { |
return 0; |
} |
// make sure we're dealing with floats |
$values = array_map('floatval', $values); |
return max($values); |
} |
/** |
* Translate a CacheID into the list of applicable InvalidationKeys. |
* |
* Splits "some|chain|into|an|array" into array( '#clearAll#', 'some', 'some|chain', 'some|chain|into', ... ) |
* |
* @param string $cid CacheID to translate |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param string $resource_uid source's filepath |
* @return array list of InvalidationKeys |
* @uses $invalidationKeyPrefix to prepend to each InvalidationKey |
*/ |
protected function listInvalidationKeys($cid, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null) |
{ |
$t = array('IVK#ALL'); |
$_name = $_compile = '#'; |
if ($resource_name) { |
$_name .= $resource_uid . '#' . $this->sanitize($resource_name); |
$t[] = 'IVK#TEMPLATE' . $_name; |
} |
if ($compile_id) { |
$_compile .= $this->sanitize($compile_id); |
$t[] = 'IVK#COMPILE' . $_compile; |
} |
$_name .= '#'; |
// some poeple smoke bad weed |
$cid = trim($cache_id, '|'); |
if (!$cid) { |
return $t; |
} |
$i = 0; |
while (true) { |
// determine next delimiter position |
$i = strpos($cid, '|', $i); |
// add complete CacheID if there are no more delimiters |
if ($i === false) { |
$t[] = 'IVK#CACHE#' . $cid; |
$t[] = 'IVK#CID' . $_name . $cid . $_compile; |
$t[] = 'IVK#CID' . $_name . $_compile; |
break; |
} |
$part = substr($cid, 0, $i); |
// add slice to list |
$t[] = 'IVK#CACHE#' . $part; |
$t[] = 'IVK#CID' . $_name . $part . $_compile; |
// skip past delimiter position |
$i++; |
} |
return $t; |
} |
/** |
* Check is cache is locked for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return booelan true or false if cache is locked |
*/ |
public function hasLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
$key = 'LOCK#' . $cached->filepath; |
$data = $this->read(array($key)); |
return $data && time() - $data[$key] < $smarty->locking_timeout; |
} |
/** |
* Lock cache for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
*/ |
public function acquireLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
$cached->is_locked = true; |
$key = 'LOCK#' . $cached->filepath; |
$this->write(array($key => time()), $smarty->locking_timeout); |
} |
/** |
* Unlock cache for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
*/ |
public function releaseLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
$cached->is_locked = false; |
$key = 'LOCK#' . $cached->filepath; |
$this->delete(array($key)); |
} |
/** |
* Read values for a set of keys from cache |
* |
* @param array $keys list of keys to fetch |
* @return array list of values with the given keys used as indexes |
*/ |
abstract protected function read(array $keys); |
/** |
* Save values for a set of keys to cache |
* |
* @param array $keys list of values to save |
* @param int $expire expiration time |
* @return boolean true on success, false on failure |
*/ |
abstract protected function write(array $keys, $expire=null); |
/** |
* Remove values from cache |
* |
* @param array $keys list of keys to delete |
* @return boolean true on success, false on failure |
*/ |
abstract protected function delete(array $keys); |
/** |
* Remove *all* values from cache |
* |
* @return boolean true on success, false on failure |
*/ |
protected function purge() |
{ |
return false; |
} |
} |
/trunk/classes/internaltemplatecompilerbase.php |
---|
New file |
0,0 → 1,807 |
<?php |
/** |
* Smarty Internal Plugin Smarty Template Compiler Base |
* |
* This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Main abstract compiler class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
abstract class Plugin_Smarty_InternalTemplateCompilerBase |
{ |
/** |
* hash for nocache sections |
* |
* @var mixed |
*/ |
private $nocache_hash = null; |
/** |
* suppress generation of nocache code |
* |
* @var bool |
*/ |
public $suppressNocacheProcessing = false; |
/** |
* suppress generation of merged template code |
* |
* @var bool |
*/ |
public $suppressMergedTemplates = false; |
/** |
* compile tag objects |
* |
* @var array |
*/ |
public static $_tag_objects = array(); |
/** |
* tag stack |
* |
* @var array |
*/ |
public $_tag_stack = array(); |
/** |
* current template |
* |
* @var Plugin_Smarty_InternalTemplate |
*/ |
public $template = null; |
/** |
* merged templates |
* |
* @var array |
*/ |
public $merged_templates = array(); |
/** |
* sources which must be compiled |
* |
* @var array |
*/ |
public $sources = array(); |
/** |
* flag that we are inside {block} |
* |
* @var bool |
*/ |
public $inheritance = false; |
/** |
* flag when compiling inheritance child template |
* |
* @var bool |
*/ |
public $inheritance_child = false; |
/** |
* uid of templates called by {extends} for recursion check |
* |
* @var array |
*/ |
public $extends_uid = array(); |
/** |
* source line offset for error messages |
* |
* @var int |
*/ |
public $trace_line_offset = 0; |
/** |
* trace uid |
* |
* @var string |
*/ |
public $trace_uid = ''; |
/** |
* trace file path |
* |
* @var string |
*/ |
public $trace_filepath = ''; |
/** |
* stack for tracing file and line of nested {block} tags |
* |
* @var array |
*/ |
public $trace_stack = array(); |
/** |
* plugins loaded by default plugin handler |
* |
* @var array |
*/ |
public $default_handler_plugins = array(); |
/** |
* saved preprocessed modifier list |
* |
* @var mixed |
*/ |
public $default_modifier_list = null; |
/** |
* force compilation of complete template as nocache |
* @var boolean |
*/ |
public $forceNocache = false; |
/** |
* suppress Smarty header code in compiled template |
* @var bool |
*/ |
public $suppressHeader = false; |
/** |
* suppress template property header code in compiled template |
* @var bool |
*/ |
public $suppressTemplatePropertyHeader = false; |
/** |
* suppress pre and post filter |
* @var bool |
*/ |
public $suppressFilter = false; |
/** |
* flag if compiled template file shall we written |
* @var bool |
*/ |
public $write_compiled_code = true; |
/** |
* flag if currently a template function is compiled |
* @var bool |
*/ |
public $compiles_template_function = false; |
/** |
* called subfuntions from template function |
* @var array |
*/ |
public $called_functions = array(); |
/** |
* flags for used modifier plugins |
* @var array |
*/ |
public $modifier_plugins = array(); |
/** |
* type of already compiled modifier |
* @var array |
*/ |
public $known_modifier_type = array(); |
/** |
* Methode to compile a Smarty template |
* |
* @param mixed $_content template source |
* @return bool true if compiling succeeded, false if it failed |
*/ |
abstract protected function doCompile($_content); |
/** |
* Initialize compiler |
*/ |
public function __construct() |
{ |
$this->nocache_hash = str_replace('.', '-', uniqid(rand(), true)); |
} |
/** |
* Method to compile a Smarty template |
* |
* @param Plugin_Smarty_InternalTemplate $template template object to compile |
* @param bool $nocache true is shall be compiled in nocache mode |
* @return bool true if compiling succeeded, false if it failed |
*/ |
public function compileTemplate(Plugin_Smarty_InternalTemplate $template, $nocache = false) |
{ |
if (empty($template->properties['nocache_hash'])) { |
$template->properties['nocache_hash'] = $this->nocache_hash; |
} else { |
$this->nocache_hash = $template->properties['nocache_hash']; |
} |
// flag for nochache sections |
$this->nocache = $nocache; |
$this->tag_nocache = false; |
// save template object in compiler class |
$this->template = $template; |
// reset has nocache code flag |
$this->template->has_nocache_code = false; |
$save_source = $this->template->source; |
// template header code |
$template_header = ''; |
if (!$this->suppressHeader) { |
$template_header .= "<?php /* Smarty version " . Plugin_Smarty_Smarty::SMARTY_VERSION . ", created on " . strftime("%Y-%m-%d %H:%M:%S") . "\n"; |
$template_header .= " compiled from \"" . $this->template->source->filepath . "\" */ ?>\n"; |
} |
if (empty($this->template->source->components)) { |
$this->sources = array($template->source); |
} else { |
// we have array of inheritance templates by extends: resource |
$this->sources = array_reverse($template->source->components); |
} |
$loop = 0; |
// the $this->sources array can get additional elements while compiling by the {extends} tag |
while ($this->template->source = array_shift($this->sources)) { |
$this->smarty->_current_file = $this->template->source->filepath; |
if ($this->smarty->debugging) { |
Smarty_Internal_Debug::start_compile($this->template); |
} |
$no_sources = count($this->sources); |
if ($loop || $no_sources) { |
$this->template->properties['file_dependency'][$this->template->source->uid] = array($this->template->source->filepath, $this->template->source->timestamp, $this->template->source->type); |
} |
$loop++; |
if ($no_sources) { |
$this->inheritance_child = true; |
} else { |
$this->inheritance_child = false; |
} |
do { |
$_compiled_code = ''; |
// flag for aborting current and start recompile |
$this->abort_and_recompile = false; |
// get template source |
$_content = $this->template->source->content; |
if ($_content != '') { |
// run prefilter if required |
if ((isset($this->smarty->autoload_filters['pre']) || isset($this->smarty->registered_filters['pre'])) && !$this->suppressFilter) { |
$_content = Smarty_Internal_Filter_Handler::runFilter('pre', $_content, $template); |
} |
// call compiler |
$_compiled_code = $this->doCompile($_content); |
} |
} while ($this->abort_and_recompile); |
if ($this->smarty->debugging) { |
Smarty_Internal_Debug::end_compile($this->template); |
} |
} |
// restore source |
$this->template->source = $save_source; |
unset($save_source); |
$this->smarty->_current_file = $this->template->source->filepath; |
// free memory |
unset($this->parser->root_buffer, $this->parser->current_buffer, $this->parser, $this->lex, $this->template); |
self::$_tag_objects = array(); |
// return compiled code to template object |
$merged_code = ''; |
if (!$this->suppressMergedTemplates && !empty($this->merged_templates)) { |
foreach ($this->merged_templates as $code) { |
$merged_code .= $code; |
} |
} |
// run postfilter if required on compiled template code |
if ((isset($this->smarty->autoload_filters['post']) || isset($this->smarty->registered_filters['post'])) && !$this->suppressFilter && $_compiled_code != '') { |
$_compiled_code = Smarty_Internal_Filter_Handler::runFilter('post', $_compiled_code, $template); |
} |
if ($this->suppressTemplatePropertyHeader) { |
$code = $_compiled_code . $merged_code; |
} else { |
$code = $template_header . $template->createTemplateCodeFrame($_compiled_code) . $merged_code; |
} |
// unset content because template inheritance could have replace source with parent code |
unset ($template->source->content); |
return $code; |
} |
/** |
* Compile Tag |
* |
* This is a call back from the lexer/parser |
* It executes the required compile plugin for the Smarty tag |
* |
* @param string $tag tag name |
* @param array $args array with tag attributes |
* @param array $parameter array with compilation parameter |
* @return string compiled code |
*/ |
public function compileTag($tag, $args, $parameter = array()) |
{ |
// $args contains the attributes parsed and compiled by the lexer/parser |
// assume that tag does compile into code, but creates no HTML output |
$this->has_code = true; |
$this->has_output = false; |
// log tag/attributes |
if (isset($this->smarty->get_used_tags) && $this->smarty->get_used_tags) { |
$this->template->used_tags[] = array($tag, $args); |
} |
// check nocache option flag |
if (in_array("'nocache'", $args) || in_array(array('nocache' => 'true'), $args) |
|| in_array(array('nocache' => '"true"'), $args) || in_array(array('nocache' => "'true'"), $args) |
) { |
$this->tag_nocache = true; |
} |
// compile the smarty tag (required compile classes to compile the tag are autoloaded) |
if (($_output = $this->callTagCompiler($tag, $args, $parameter)) === false) { |
if (isset($this->smarty->template_functions[$tag])) { |
// template defined by {template} tag |
$args['_attr']['name'] = "'" . $tag . "'"; |
$_output = $this->callTagCompiler('call', $args, $parameter); |
} |
} |
if ($_output !== false) { |
if ($_output !== true) { |
// did we get compiled code |
if ($this->has_code) { |
// Does it create output? |
if ($this->has_output) { |
$_output .= "\n"; |
} |
// return compiled code |
return $_output; |
} |
} |
// tag did not produce compiled code |
return null; |
} else { |
// map_named attributes |
if (isset($args['_attr'])) { |
foreach ($args['_attr'] as $key => $attribute) { |
if (is_array($attribute)) { |
$args = array_merge($args, $attribute); |
} |
} |
} |
// not an internal compiler tag |
if (strlen($tag) < 6 || substr($tag, -5) != 'close') { |
// check if tag is a registered object |
if (isset($this->smarty->registered_objects[$tag]) && isset($parameter['object_methode'])) { |
$methode = $parameter['object_methode']; |
if (!in_array($methode, $this->smarty->registered_objects[$tag][3]) && |
(empty($this->smarty->registered_objects[$tag][1]) || in_array($methode, $this->smarty->registered_objects[$tag][1])) |
) { |
return $this->callTagCompiler('private_object_function', $args, $parameter, $tag, $methode); |
} elseif (in_array($methode, $this->smarty->registered_objects[$tag][3])) { |
return $this->callTagCompiler('private_object_block_function', $args, $parameter, $tag, $methode); |
} else { |
return $this->trigger_template_error('unallowed methode "' . $methode . '" in registered object "' . $tag . '"', $this->lex->taglineno); |
} |
} |
// check if tag is registered |
foreach (array(Plugin_Smarty_Smarty::PLUGIN_COMPILER, Plugin_Smarty_Smarty::PLUGIN_FUNCTION, Plugin_Smarty_Smarty::PLUGIN_BLOCK) as $plugin_type) { |
if (isset($this->smarty->registered_plugins[$plugin_type][$tag])) { |
// if compiler function plugin call it now |
if ($plugin_type == Plugin_Smarty_Smarty::PLUGIN_COMPILER) { |
$new_args = array(); |
foreach ($args as $key => $mixed) { |
if (is_array($mixed)) { |
$new_args = array_merge($new_args, $mixed); |
} else { |
$new_args[$key] = $mixed; |
} |
} |
if (!$this->smarty->registered_plugins[$plugin_type][$tag][1]) { |
$this->tag_nocache = true; |
} |
$function = $this->smarty->registered_plugins[$plugin_type][$tag][0]; |
if (!is_array($function)) { |
return $function($new_args, $this); |
} elseif (is_object($function[0])) { |
return $this->smarty->registered_plugins[$plugin_type][$tag][0][0]->$function[1]($new_args, $this); |
} else { |
return call_user_func_array($function, array($new_args, $this)); |
} |
} |
// compile registered function or block function |
if ($plugin_type == Plugin_Smarty_Smarty::PLUGIN_FUNCTION || $plugin_type == Plugin_Smarty_Smarty::PLUGIN_BLOCK) { |
return $this->callTagCompiler('private_registered_' . $plugin_type, $args, $parameter, $tag); |
} |
} |
} |
// check plugins from plugins folder |
foreach ($this->smarty->plugin_search_order as $plugin_type) { |
if ($plugin_type == Plugin_Smarty_Smarty::PLUGIN_COMPILER && $this->smarty->loadPlugin('smarty_compiler_' . $tag) && (!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this))) { |
$plugin = 'smarty_compiler_' . $tag; |
if (is_callable($plugin)) { |
// convert arguments format for old compiler plugins |
$new_args = array(); |
foreach ($args as $key => $mixed) { |
if (is_array($mixed)) { |
$new_args = array_merge($new_args, $mixed); |
} else { |
$new_args[$key] = $mixed; |
} |
} |
return $plugin($new_args, $this->smarty); |
} |
if (class_exists($plugin, false)) { |
$plugin_object = new $plugin; |
if (method_exists($plugin_object, 'compile')) { |
return $plugin_object->compile($args, $this); |
} |
} |
throw new Plugin_Smarty_Exception("Plugin \"{$tag}\" not callable"); |
} else { |
if ($function = $this->getPlugin($tag, $plugin_type)) { |
if (!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this)) { |
return $this->callTagCompiler('private_' . $plugin_type . '_plugin', $args, $parameter, $tag, $function); |
} |
} |
} |
} |
if (is_callable($this->smarty->default_plugin_handler_func)) { |
$found = false; |
// look for already resolved tags |
foreach ($this->smarty->plugin_search_order as $plugin_type) { |
if (isset($this->default_handler_plugins[$plugin_type][$tag])) { |
$found = true; |
break; |
} |
} |
if (!$found) { |
// call default handler |
foreach ($this->smarty->plugin_search_order as $plugin_type) { |
if ($this->getPluginFromDefaultHandler($tag, $plugin_type)) { |
$found = true; |
break; |
} |
} |
} |
if ($found) { |
// if compiler function plugin call it now |
if ($plugin_type == Plugin_Smarty_Smarty::PLUGIN_COMPILER) { |
$new_args = array(); |
foreach ($args as $mixed) { |
$new_args = array_merge($new_args, $mixed); |
} |
$function = $this->default_handler_plugins[$plugin_type][$tag][0]; |
if (!is_array($function)) { |
return $function($new_args, $this); |
} elseif (is_object($function[0])) { |
return $this->default_handler_plugins[$plugin_type][$tag][0][0]->$function[1]($new_args, $this); |
} else { |
return call_user_func_array($function, array($new_args, $this)); |
} |
} else { |
return $this->callTagCompiler('private_registered_' . $plugin_type, $args, $parameter, $tag); |
} |
} |
} |
} else { |
// compile closing tag of block function |
$base_tag = substr($tag, 0, -5); |
// check if closing tag is a registered object |
if (isset($this->smarty->registered_objects[$base_tag]) && isset($parameter['object_methode'])) { |
$methode = $parameter['object_methode']; |
if (in_array($methode, $this->smarty->registered_objects[$base_tag][3])) { |
return $this->callTagCompiler('private_object_block_function', $args, $parameter, $tag, $methode); |
} else { |
return $this->trigger_template_error('unallowed closing tag methode "' . $methode . '" in registered object "' . $base_tag . '"', $this->lex->taglineno); |
} |
} |
// registered block tag ? |
if (isset($this->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_BLOCK][$base_tag]) || isset($this->default_handler_plugins[Plugin_Smarty_Smarty::PLUGIN_BLOCK][$base_tag])) { |
return $this->callTagCompiler('private_registered_block', $args, $parameter, $tag); |
} |
// block plugin? |
if ($function = $this->getPlugin($base_tag, Plugin_Smarty_Smarty::PLUGIN_BLOCK)) { |
return $this->callTagCompiler('private_block_plugin', $args, $parameter, $tag, $function); |
} |
// registered compiler plugin ? |
if (isset($this->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_COMPILER][$tag])) { |
// if compiler function plugin call it now |
$args = array(); |
if (!$this->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_COMPILER][$tag][1]) { |
$this->tag_nocache = true; |
} |
$function = $this->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_COMPILER][$tag][0]; |
if (!is_array($function)) { |
return $function($args, $this); |
} elseif (is_object($function[0])) { |
return $this->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_COMPILER][$tag][0][0]->$function[1]($args, $this); |
} else { |
return call_user_func_array($function, array($args, $this)); |
} |
} |
if ($this->smarty->loadPlugin('smarty_compiler_' . $tag)) { |
$plugin = 'smarty_compiler_' . $tag; |
if (is_callable($plugin)) { |
return $plugin($args, $this->smarty); |
} |
if (class_exists($plugin, false)) { |
$plugin_object = new $plugin; |
if (method_exists($plugin_object, 'compile')) { |
return $plugin_object->compile($args, $this); |
} |
} |
throw new Plugin_Smarty_Exception("Plugin \"{$tag}\" not callable"); |
} |
} |
$this->trigger_template_error("unknown tag \"" . $tag . "\"", $this->lex->taglineno); |
} |
} |
/** |
* lazy loads internal compile plugin for tag and calls the compile methode |
* |
* compile objects cached for reuse. |
* class name format: Smarty_Internal_Compile_TagName |
* plugin filename format: Smarty_Internal_Tagname.php |
* |
* @param string $tag tag name |
* @param array $args list of tag attributes |
* @param mixed $param1 optional parameter |
* @param mixed $param2 optional parameter |
* @param mixed $param3 optional parameter |
* @return string compiled code |
*/ |
public function callTagCompiler($tag, $args, $param1 = null, $param2 = null, $param3 = null) |
{ |
// re-use object if already exists |
if (isset(self::$_tag_objects[$tag])) { |
// compile this tag |
return self::$_tag_objects[$tag]->compile($args, $this, $param1, $param2, $param3); |
} |
// lazy load internal compiler plugin |
$class_name = 'Plugin_Smarty_InternalCompile' . $tag; |
// check if tag allowed by security |
if (!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this)) { |
// use plugin if found |
self::$_tag_objects[$tag] = new $class_name; |
// compile this tag |
return self::$_tag_objects[$tag]->compile($args, $this, $param1, $param2, $param3); |
} |
// no internal compile plugin for this tag |
return false; |
} |
/** |
* Check for plugins and return function name |
* |
* @param string $pugin_name name of plugin or function |
* @param string $plugin_type type of plugin |
* @return string call name of function |
*/ |
public function getPlugin($plugin_name, $plugin_type) |
{ |
$function = null; |
if ($this->template->caching && ($this->nocache || $this->tag_nocache)) { |
if (isset($this->template->required_plugins['nocache'][$plugin_name][$plugin_type])) { |
$function = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function']; |
} elseif (isset($this->template->required_plugins['compiled'][$plugin_name][$plugin_type])) { |
$this->template->required_plugins['nocache'][$plugin_name][$plugin_type] = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]; |
$function = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function']; |
} |
} else { |
if (isset($this->template->required_plugins['compiled'][$plugin_name][$plugin_type])) { |
$function = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function']; |
} elseif (isset($this->template->required_plugins['nocache'][$plugin_name][$plugin_type])) { |
$this->template->required_plugins['compiled'][$plugin_name][$plugin_type] = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]; |
$function = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function']; |
} |
} |
if (isset($function)) { |
if ($plugin_type == 'modifier') { |
$this->modifier_plugins[$plugin_name] = true; |
} |
return $function; |
} |
// loop through plugin dirs and find the plugin |
$function = 'smarty_' . $plugin_type . '_' . $plugin_name; |
$file = $this->smarty->loadPlugin($function, false); |
if (is_string($file)) { |
if ($this->template->caching && ($this->nocache || $this->tag_nocache)) { |
$this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['file'] = $file; |
$this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function'] = $function; |
} else { |
$this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['file'] = $file; |
$this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function'] = $function; |
} |
if ($plugin_type == 'modifier') { |
$this->modifier_plugins[$plugin_name] = true; |
} |
return $function; |
} |
if (is_callable($function)) { |
// plugin function is defined in the script |
return $function; |
} |
return false; |
} |
/** |
* Check for plugins by default plugin handler |
* |
* @param string $tag name of tag |
* @param string $plugin_type type of plugin |
* @return boolean true if found |
*/ |
public function getPluginFromDefaultHandler($tag, $plugin_type) |
{ |
$callback = null; |
$script = null; |
$cacheable = true; |
$result = call_user_func_array( |
$this->smarty->default_plugin_handler_func, array($tag, $plugin_type, $this->template, &$callback, &$script, &$cacheable) |
); |
if ($result) { |
$this->tag_nocache = $this->tag_nocache || !$cacheable; |
if ($script !== null) { |
if (is_file($script)) { |
if ($this->template->caching && ($this->nocache || $this->tag_nocache)) { |
$this->template->required_plugins['nocache'][$tag][$plugin_type]['file'] = $script; |
$this->template->required_plugins['nocache'][$tag][$plugin_type]['function'] = $callback; |
} else { |
$this->template->required_plugins['compiled'][$tag][$plugin_type]['file'] = $script; |
$this->template->required_plugins['compiled'][$tag][$plugin_type]['function'] = $callback; |
} |
include_once $script; |
} else { |
$this->trigger_template_error("Default plugin handler: Returned script file \"{$script}\" for \"{$tag}\" not found"); |
} |
} |
if (!is_string($callback) && !(is_array($callback) && is_string($callback[0]) && is_string($callback[1]))) { |
$this->trigger_template_error("Default plugin handler: Returned callback for \"{$tag}\" must be a static function name or array of class and function name"); |
} |
if (is_callable($callback)) { |
$this->default_handler_plugins[$plugin_type][$tag] = array($callback, true, array()); |
return true; |
} else { |
$this->trigger_template_error("Default plugin handler: Returned callback for \"{$tag}\" not callable"); |
} |
} |
return false; |
} |
/** |
* Inject inline code for nocache template sections |
* |
* This method gets the content of each template element from the parser. |
* If the content is compiled code and it should be not cached the code is injected |
* into the rendered output. |
* |
* @param string $content content of template element |
* @param boolean $is_code true if content is compiled code |
* @return string content |
*/ |
public function processNocacheCode($content, $is_code) |
{ |
// If the template is not evaluated and we have a nocache section and or a nocache tag |
if ($is_code && !empty($content)) { |
// generate replacement code |
if ((!($this->template->source->recompiled) || $this->forceNocache) && $this->template->caching && !$this->suppressNocacheProcessing && |
($this->nocache || $this->tag_nocache) |
) { |
$this->template->has_nocache_code = true; |
$_output = addcslashes($content, '\'\\'); |
$_output = str_replace("^#^", "'", $_output); |
$_output = "<?php echo '/*%%SmartyNocache:{$this->nocache_hash}%%*/" . $_output . "/*/%%SmartyNocache:{$this->nocache_hash}%%*/';?>\n"; |
// make sure we include modifier plugins for nocache code |
foreach ($this->modifier_plugins as $plugin_name => $dummy) { |
if (isset($this->template->required_plugins['compiled'][$plugin_name]['modifier'])) { |
$this->template->required_plugins['nocache'][$plugin_name]['modifier'] = $this->template->required_plugins['compiled'][$plugin_name]['modifier']; |
} |
} |
} else { |
$_output = $content; |
} |
} else { |
$_output = $content; |
} |
$this->modifier_plugins = array(); |
$this->suppressNocacheProcessing = false; |
$this->tag_nocache = false; |
return $_output; |
} |
/** |
* push current file and line offset on stack for tracing {block} source lines |
* |
* @param string $file new filename |
* @param string $uid uid of file |
* @param string $debug false debug end_compile shall not be called |
* @param int $line line offset to source |
*/ |
public function pushTrace($file, $uid, $line, $debug = true) |
{ |
if ($this->smarty->debugging && $debug) { |
Smarty_Internal_Debug::end_compile($this->template); |
} |
array_push($this->trace_stack, array($this->smarty->_current_file, $this->trace_filepath, $this->trace_uid, $this->trace_line_offset)); |
$this->trace_filepath = $this->smarty->_current_file = $file; |
$this->trace_uid = $uid; |
$this->trace_line_offset = $line ; |
if ($this->smarty->debugging) { |
Smarty_Internal_Debug::start_compile($this->template); |
} |
} |
/** |
* restore file and line offset |
* |
*/ |
public function popTrace() |
{ |
if ($this->smarty->debugging) { |
Smarty_Internal_Debug::end_compile($this->template); |
} |
$r = array_pop($this->trace_stack); |
$this->smarty->_current_file = $r[0]; |
$this->trace_filepath = $r[1]; |
$this->trace_uid = $r[2]; |
$this->trace_line_offset = $r[3]; |
if ($this->smarty->debugging) { |
Smarty_Internal_Debug::start_compile($this->template); |
} |
} |
/** |
* display compiler error messages without dying |
* |
* If parameter $args is empty it is a parser detected syntax error. |
* In this case the parser is called to obtain information about expected tokens. |
* |
* If parameter $args contains a string this is used as error message |
* |
* @param string $args individual error message or null |
* @param string $line line-number |
* @throws SmartyCompilerException when an unexpected token is found |
*/ |
public function trigger_template_error($args = null, $line = null) |
{ |
// get template source line which has error |
if (!isset($line)) { |
$line = $this->lex->line; |
} |
// $line += $this->trace_line_offset; |
$match = preg_split("/\n/", $this->lex->data); |
$error_text = 'Syntax error in template "' . (empty($this->trace_filepath) ? $this->template->source->filepath : $this->trace_filepath) . '" on line ' . ($line + $this->trace_line_offset) . ' "' . trim(preg_replace('![\t\r\n]+!', ' ', $match[$line - 1])) . '" '; |
if (isset($args)) { |
// individual error message |
$error_text .= $args; |
} else { |
// expected token from parser |
$error_text .= ' - Unexpected "' . $this->lex->value . '"'; |
if (count($this->parser->yy_get_expected_tokens($this->parser->yymajor)) <= 4) { |
foreach ($this->parser->yy_get_expected_tokens($this->parser->yymajor) as $token) { |
$exp_token = $this->parser->yyTokenName[$token]; |
if (isset($this->lex->smarty_token_names[$exp_token])) { |
// token type from lexer |
$expect[] = '"' . $this->lex->smarty_token_names[$exp_token] . '"'; |
} else { |
// otherwise internal token name |
$expect[] = $this->parser->yyTokenName[$token]; |
} |
} |
$error_text .= ', expected one of: ' . implode(' , ', $expect); |
} |
} |
$e = new SmartyCompilerException($error_text); |
$e->line = $line; |
$e->source = trim(preg_replace('![\t\r\n]+!', ' ', $match[$line - 1])); |
$e->desc = $args; |
$e->template = $this->template->source->filepath; |
throw $e; |
} |
} |
/trunk/classes/internalcompileprivatechildblock.php |
---|
New file |
0,0 → 1,48 |
<?php |
/** |
* Smarty Internal Plugin Compile Child Block Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompilePrivateChildBlock extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $required_attributes = array('name', 'file', 'uid', 'line'); |
/** |
* Compiles code for the {private_child_block} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return boolean true |
*/ |
public function compile($args, $compiler) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
// must merge includes |
if ($_attr['nocache'] == true) { |
$compiler->tag_nocache = true; |
} |
$save = array($_attr, $compiler->nocache); |
// set trace back to child block |
$compiler->pushTrace(trim($_attr['file'], "\"'"), trim($_attr['uid'], "\"'"), $_attr['line'] - $compiler->lex->line); |
$this->openTag($compiler, 'private_child_block', $save); |
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache; |
$compiler->has_code = false; |
return true; |
} |
} |
/trunk/classes/internalcompileinclude_php.php |
---|
New file |
0,0 → 1,106 |
<?php |
/** |
* Smarty Internal Plugin Compile Include PHP |
* |
* Compiles the {include_php} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Insert Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileIncludePhp extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $required_attributes = array('file'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('file'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('once', 'assign'); |
/** |
* Compiles code for the {include_php} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
if (!($compiler->smarty instanceof SmartyBC)) { |
throw new Plugin_Smarty_Exception("{include_php} is deprecated, use SmartyBC class to enable"); |
} |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
$_output = '<?php '; |
$_smarty_tpl = $compiler->template; |
$_filepath = false; |
eval('$_file = ' . $_attr['file'] . ';'); |
if (!isset($compiler->smarty->security_policy) && file_exists($_file)) { |
$_filepath = $_file; |
} else { |
if (isset($compiler->smarty->security_policy)) { |
$_dir = $compiler->smarty->security_policy->trusted_dir; |
} else { |
$_dir = $compiler->smarty->trusted_dir; |
} |
if (!empty($_dir)) { |
foreach ((array) $_dir as $_script_dir) { |
$_script_dir = rtrim($_script_dir, '/\\') . DS; |
if (file_exists($_script_dir . $_file)) { |
$_filepath = $_script_dir . $_file; |
break; |
} |
} |
} |
} |
if ($_filepath == false) { |
$compiler->trigger_template_error("{include_php} file '{$_file}' is not readable", $compiler->lex->taglineno); |
} |
if (isset($compiler->smarty->security_policy)) { |
$compiler->smarty->security_policy->isTrustedPHPDir($_filepath); |
} |
if (isset($_attr['assign'])) { |
// output will be stored in a smarty variable instead of being displayed |
$_assign = $_attr['assign']; |
} |
$_once = '_once'; |
if (isset($_attr['once'])) { |
if ($_attr['once'] == 'false') { |
$_once = ''; |
} |
} |
if (isset($_assign)) { |
return "<?php ob_start(); include{$_once} ('{$_filepath}'); \$_smarty_tpl->assign({$_assign},ob_get_contents()); ob_end_clean();?>"; |
} else { |
return "<?php include{$_once} ('{$_filepath}');?>\n"; |
} |
} |
} |
/trunk/classes/internalresourcestream.php |
---|
New file |
0,0 → 1,80 |
<?php |
/** |
* Smarty Internal Plugin Resource Stream |
* |
* Implements the streams as resource for Smarty template |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Uwe Tews |
* @author Rodney Rehm |
*/ |
/** |
* Smarty Internal Plugin Resource Stream |
* |
* Implements the streams as resource for Smarty template |
* |
* @link http://php.net/streams |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
class Plugin_Smarty_InternalResourceStream extends Plugin_Smarty_ResourceRecompiled |
{ |
/** |
* populate Source Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populate(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template=null) |
{ |
if (strpos($source->resource, '://') !== false) { |
$source->filepath = $source->resource; |
} else { |
$source->filepath = str_replace(':', '://', $source->resource); |
} |
$source->uid = false; |
$source->content = $this->getContent($source); |
$source->timestamp = false; |
$source->exists = !!$source->content; |
} |
/** |
* Load template's source from stream into current template object |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string template source |
* @throws Plugin_Smarty_Exception if source cannot be loaded |
*/ |
public function getContent(Plugin_Smarty_TemplateSource $source) |
{ |
$t = ''; |
// the availability of the stream has already been checked in Plugin_Smarty_Resource::fetch() |
$fp = fopen($source->filepath, 'r+'); |
if ($fp) { |
while (!feof($fp) && ($current_line = fgets($fp)) !== false) { |
$t .= $current_line; |
} |
fclose($fp); |
return $t; |
} else { |
return false; |
} |
} |
/** |
* modify resource_name according to resource handlers specifications |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty instance |
* @param string $resource_name resource_name to make unique |
* @param boolean $is_config flag for config resource |
* @return string unique resource name |
*/ |
protected function buildUniqueResourceName(Plugin_Smarty_Smarty $smarty, $resource_name, $is_config = false) |
{ |
return get_class($this) . '#' . $resource_name; |
} |
} |
/trunk/classes/templatecached.php |
---|
New file |
0,0 → 1,190 |
<?php |
/** |
* Smarty Resource Data Object |
* |
* Cache Data Container for Template Files |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Rodney Rehm |
*/ |
class Plugin_Smarty_TemplateCached |
{ |
/** |
* Source Filepath |
* @var string |
*/ |
public $filepath = false; |
/** |
* Source Content |
* @var string |
*/ |
public $content = null; |
/** |
* Source Timestamp |
* @var integer |
*/ |
public $timestamp = false; |
/** |
* Source Existence |
* @var boolean |
*/ |
public $exists = false; |
/** |
* Cache Is Valid |
* @var boolean |
*/ |
public $valid = false; |
/** |
* Cache was processed |
* @var boolean |
*/ |
public $processed = false; |
/** |
* CacheResource Handler |
* @var Smarty_CacheResource |
*/ |
public $handler = null; |
/** |
* Template Compile Id (Plugin_Smarty_InternalTemplate::$compile_id) |
* @var string |
*/ |
public $compile_id = null; |
/** |
* Template Cache Id (Plugin_Smarty_InternalTemplate::$cache_id) |
* @var string |
*/ |
public $cache_id = null; |
/** |
* Id for cache locking |
* @var string |
*/ |
public $lock_id = null; |
/** |
* flag that cache is locked by this instance |
* @var bool |
*/ |
public $is_locked = false; |
/** |
* Source Object |
* @var Plugin_Smarty_TemplateSource |
*/ |
public $source = null; |
/** |
* create Cached Object container |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
*/ |
public function __construct(Plugin_Smarty_InternalTemplate $_template) |
{ |
$this->compile_id = $_template->compile_id; |
$this->cache_id = $_template->cache_id; |
$this->source = $_template->source; |
$_template->cached = $this; |
$smarty = $_template->smarty; |
// |
// load resource handler |
// |
$this->handler = $handler = Smarty_CacheResource::load($smarty); // Note: prone to circular references |
// |
// check if cache is valid |
// |
if (!($_template->caching == Plugin_Smarty_Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Plugin_Smarty_Smarty::CACHING_LIFETIME_SAVED) || $_template->source->recompiled) { |
$handler->populate($this, $_template); |
return; |
} |
while (true) { |
while (true) { |
$handler->populate($this, $_template); |
if ($this->timestamp === false || $smarty->force_compile || $smarty->force_cache) { |
$this->valid = false; |
} else { |
$this->valid = true; |
} |
if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && $_template->cache_lifetime >= 0 && time() > ($this->timestamp + $_template->cache_lifetime)) { |
// lifetime expired |
$this->valid = false; |
} |
if ($this->valid || !$_template->smarty->cache_locking) { |
break; |
} |
if (!$this->handler->locked($_template->smarty, $this)) { |
$this->handler->acquireLock($_template->smarty, $this); |
break 2; |
} |
} |
if ($this->valid) { |
if (!$_template->smarty->cache_locking || $this->handler->locked($_template->smarty, $this) === null) { |
// load cache file for the following checks |
if ($smarty->debugging) { |
Smarty_Internal_Debug::start_cache($_template); |
} |
if ($handler->process($_template, $this) === false) { |
$this->valid = false; |
} else { |
$this->processed = true; |
} |
if ($smarty->debugging) { |
Smarty_Internal_Debug::end_cache($_template); |
} |
} else { |
continue; |
} |
} else { |
return; |
} |
if ($this->valid && $_template->caching === Plugin_Smarty_Smarty::CACHING_LIFETIME_SAVED && $_template->properties['cache_lifetime'] >= 0 && (time() > ($_template->cached->timestamp + $_template->properties['cache_lifetime']))) { |
$this->valid = false; |
} |
if (!$this->valid && $_template->smarty->cache_locking) { |
$this->handler->acquireLock($_template->smarty, $this); |
return; |
} else { |
return; |
} |
} |
} |
/** |
* Write this cache object to handler |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param string $content content to cache |
* @return boolean success |
*/ |
public function write(Plugin_Smarty_InternalTemplate $_template, $content) |
{ |
if (!$_template->source->recompiled) { |
if ($this->handler->writeCachedContent($_template, $content)) { |
$this->timestamp = time(); |
$this->exists = true; |
$this->valid = true; |
if ($_template->smarty->cache_locking) { |
$this->handler->releaseLock($_template->smarty, $this); |
} |
return true; |
} |
} |
return false; |
} |
} |
/trunk/classes/internalcompileprivateregisteredfunction.php |
---|
New file |
0,0 → 1,80 |
<?php |
/** |
* Smarty Internal Plugin Compile Registered Function |
* |
* Compiles code for the execution of a registered function |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Registered Function Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompilePrivateRegisteredFunction extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('_any'); |
/** |
* Compiles code for the execution of a registered function |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @param array $parameter array with compilation parameter |
* @param string $tag name of function |
* @return string compiled code |
*/ |
public function compile($args, $compiler, $parameter, $tag) |
{ |
// This tag does create output |
$compiler->has_output = true; |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache']) { |
$compiler->tag_nocache = true; |
} |
unset($_attr['nocache']); |
if (isset($compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_FUNCTION][$tag])) { |
$tag_info = $compiler->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_FUNCTION][$tag]; |
} else { |
$tag_info = $compiler->default_handler_plugins[Plugin_Smarty_Smarty::PLUGIN_FUNCTION][$tag]; |
} |
// not cachable? |
$compiler->tag_nocache = $compiler->tag_nocache || !$tag_info[1]; |
// convert attributes into parameter array string |
$_paramsArray = array(); |
foreach ($_attr as $_key => $_value) { |
if (is_int($_key)) { |
$_paramsArray[] = "$_key=>$_value"; |
} elseif ($compiler->template->caching && in_array($_key,$tag_info[2])) { |
$_value = str_replace("'","^#^",$_value); |
$_paramsArray[] = "'$_key'=>^#^.var_export($_value,true).^#^"; |
} else { |
$_paramsArray[] = "'$_key'=>$_value"; |
} |
} |
$_params = 'array(' . implode(",", $_paramsArray) . ')'; |
$function = $tag_info[0]; |
// compile code |
if (!is_array($function)) { |
$output = "<?php echo {$function}({$_params},\$_smarty_tpl);?>\n"; |
} elseif (is_object($function[0])) { |
$output = "<?php echo \$_smarty_tpl->smarty->registered_plugins[Plugin_Smarty_Smarty::PLUGIN_FUNCTION]['{$tag}'][0][0]->{$function[1]}({$_params},\$_smarty_tpl);?>\n"; |
} else { |
$output = "<?php echo {$function[0]}::{$function[1]}({$_params},\$_smarty_tpl);?>\n"; |
} |
return $output; |
} |
} |
/trunk/classes/internalcompilewhileclose.php |
---|
New file |
0,0 → 1,29 |
<?php |
/** |
* Smarty Internal Plugin Compile Whileclose Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileWhileclose extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {/while} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
// must endblock be nocache? |
if ($compiler->nocache) { |
$compiler->tag_nocache = true; |
} |
$compiler->nocache = $this->closeTag($compiler, array('while')); |
return "<?php }?>"; |
} |
} |
/trunk/classes/internaldata.php |
---|
New file |
0,0 → 1,428 |
<?php |
/** |
* Smarty Internal Plugin Data |
* |
* This file contains the basic classes and methodes for template and variable creation |
* |
* @package Smarty |
* @subpackage Template |
* @author Uwe Tews |
*/ |
/** |
* Base class with template and variable methodes |
* |
* @package Smarty |
* @subpackage Template |
*/ |
class Plugin_Smarty_InternalData |
{ |
/** |
* name of class used for templates |
* |
* @var string |
*/ |
public $template_class = 'Plugin_Smarty_InternalTemplate'; |
/** |
* template variables |
* |
* @var array |
*/ |
public $tpl_vars = array(); |
/** |
* parent template (if any) |
* |
* @var Plugin_Smarty_InternalTemplate |
*/ |
public $parent = null; |
/** |
* configuration settings |
* |
* @var array |
*/ |
public $config_vars = array(); |
/** |
* assigns a Smarty variable |
* |
* @param array|string $tpl_var the template variable name(s) |
* @param mixed $value the value to assign |
* @param boolean $nocache if true any output of this variable will be not cached |
* @param boolean $scope the scope the variable will have (local,parent or root) |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function assign($tpl_var, $value = null, $nocache = false) |
{ |
if (is_array($tpl_var)) { |
foreach ($tpl_var as $_key => $_val) { |
if ($_key != '') { |
$this->tpl_vars[$_key] = new Plugin_Smarty_Variable($_val, $nocache); |
} |
} |
} else { |
if ($tpl_var != '') { |
$this->tpl_vars[$tpl_var] = new Plugin_Smarty_Variable($value, $nocache); |
} |
} |
return $this; |
} |
/** |
* assigns a global Smarty variable |
* |
* @param string $varname the global variable name |
* @param mixed $value the value to assign |
* @param boolean $nocache if true any output of this variable will be not cached |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function assignGlobal($varname, $value = null, $nocache = false) |
{ |
if ($varname != '') { |
Plugin_Smarty_Smarty::$global_tpl_vars[$varname] = new Plugin_Smarty_Variable($value, $nocache); |
$ptr = $this; |
while ($ptr instanceof Plugin_Smarty_InternalTemplate) { |
$ptr->tpl_vars[$varname] = clone Plugin_Smarty_Smarty::$global_tpl_vars[$varname]; |
$ptr = $ptr->parent; |
} |
} |
return $this; |
} |
/** |
* assigns values to template variables by reference |
* |
* @param string $tpl_var the template variable name |
* @param mixed $ &$value the referenced value to assign |
* @param boolean $nocache if true any output of this variable will be not cached |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function assignByRef($tpl_var, &$value, $nocache = false) |
{ |
if ($tpl_var != '') { |
$this->tpl_vars[$tpl_var] = new Plugin_Smarty_Variable(null, $nocache); |
$this->tpl_vars[$tpl_var]->value = &$value; |
} |
return $this; |
} |
/** |
* appends values to template variables |
* |
* @param array|string $tpl_var the template variable name(s) |
* @param mixed $value the value to append |
* @param boolean $merge flag if array elements shall be merged |
* @param boolean $nocache if true any output of this variable will be not cached |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function append($tpl_var, $value = null, $merge = false, $nocache = false) |
{ |
if (is_array($tpl_var)) { |
// $tpl_var is an array, ignore $value |
foreach ($tpl_var as $_key => $_val) { |
if ($_key != '') { |
if (!isset($this->tpl_vars[$_key])) { |
$tpl_var_inst = $this->getVariable($_key, null, true, false); |
if ($tpl_var_inst instanceof Plugin_Smarty_UndefinedSmartyVariable) { |
$this->tpl_vars[$_key] = new Plugin_Smarty_Variable(null, $nocache); |
} else { |
$this->tpl_vars[$_key] = clone $tpl_var_inst; |
} |
} |
if (!(is_array($this->tpl_vars[$_key]->value) || $this->tpl_vars[$_key]->value instanceof ArrayAccess)) { |
settype($this->tpl_vars[$_key]->value, 'array'); |
} |
if ($merge && is_array($_val)) { |
foreach ($_val as $_mkey => $_mval) { |
$this->tpl_vars[$_key]->value[$_mkey] = $_mval; |
} |
} else { |
$this->tpl_vars[$_key]->value[] = $_val; |
} |
} |
} |
} else { |
if ($tpl_var != '' && isset($value)) { |
if (!isset($this->tpl_vars[$tpl_var])) { |
$tpl_var_inst = $this->getVariable($tpl_var, null, true, false); |
if ($tpl_var_inst instanceof Plugin_Smarty_UndefinedSmartyVariable) { |
$this->tpl_vars[$tpl_var] = new Plugin_Smarty_Variable(null, $nocache); |
} else { |
$this->tpl_vars[$tpl_var] = clone $tpl_var_inst; |
} |
} |
if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) { |
settype($this->tpl_vars[$tpl_var]->value, 'array'); |
} |
if ($merge && is_array($value)) { |
foreach ($value as $_mkey => $_mval) { |
$this->tpl_vars[$tpl_var]->value[$_mkey] = $_mval; |
} |
} else { |
$this->tpl_vars[$tpl_var]->value[] = $value; |
} |
} |
} |
return $this; |
} |
/** |
* appends values to template variables by reference |
* |
* @param string $tpl_var the template variable name |
* @param mixed &$value the referenced value to append |
* @param boolean $merge flag if array elements shall be merged |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function appendByRef($tpl_var, &$value, $merge = false) |
{ |
if ($tpl_var != '' && isset($value)) { |
if (!isset($this->tpl_vars[$tpl_var])) { |
$this->tpl_vars[$tpl_var] = new Plugin_Smarty_Variable(); |
} |
if (!is_array($this->tpl_vars[$tpl_var]->value)) { |
settype($this->tpl_vars[$tpl_var]->value, 'array'); |
} |
if ($merge && is_array($value)) { |
foreach ($value as $_key => $_val) { |
$this->tpl_vars[$tpl_var]->value[$_key] = &$value[$_key]; |
} |
} else { |
$this->tpl_vars[$tpl_var]->value[] = &$value; |
} |
} |
return $this; |
} |
/** |
* Returns a single or all template variables |
* |
* @param string $varname variable name or null |
* @param string $_ptr optional pointer to data object |
* @param boolean $search_parents include parent templates? |
* @return string variable value or or array of variables |
*/ |
public function getTemplateVars($varname = null, $_ptr = null, $search_parents = true) |
{ |
if (isset($varname)) { |
$_var = $this->getVariable($varname, $_ptr, $search_parents, false); |
if (is_object($_var)) { |
return $_var->value; |
} else { |
return null; |
} |
} else { |
$_result = array(); |
if ($_ptr === null) { |
$_ptr = $this; |
} while ($_ptr !== null) { |
foreach ($_ptr->tpl_vars AS $key => $var) { |
if (!array_key_exists($key, $_result)) { |
$_result[$key] = $var->value; |
} |
} |
// not found, try at parent |
if ($search_parents) { |
$_ptr = $_ptr->parent; |
} else { |
$_ptr = null; |
} |
} |
if ($search_parents && isset(Plugin_Smarty_Smarty::$global_tpl_vars)) { |
foreach (Plugin_Smarty_Smarty::$global_tpl_vars AS $key => $var) { |
if (!array_key_exists($key, $_result)) { |
$_result[$key] = $var->value; |
} |
} |
} |
return $_result; |
} |
} |
/** |
* clear the given assigned template variable. |
* |
* @param string|array $tpl_var the template variable(s) to clear |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function clearAssign($tpl_var) |
{ |
if (is_array($tpl_var)) { |
foreach ($tpl_var as $curr_var) { |
unset($this->tpl_vars[$curr_var]); |
} |
} else { |
unset($this->tpl_vars[$tpl_var]); |
} |
return $this; |
} |
/** |
* clear all the assigned template variables. |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function clearAllAssign() |
{ |
$this->tpl_vars = array(); |
return $this; |
} |
/** |
* load a config file, optionally load just selected sections |
* |
* @param string $config_file filename |
* @param mixed $sections array of section names, single section or null |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function configLoad($config_file, $sections = null) |
{ |
// load Config class |
$config = new Plugin_Smarty_InternalConfig($config_file, $this->smarty, $this); |
$config->loadConfigVars($sections); |
return $this; |
} |
/** |
* gets the object of a Smarty variable |
* |
* @param string $variable the name of the Smarty variable |
* @param object $_ptr optional pointer to data object |
* @param boolean $search_parents search also in parent data |
* @return object the object of the variable |
*/ |
public function getVariable($variable, $_ptr = null, $search_parents = true, $error_enable = true) |
{ |
if ($_ptr === null) { |
$_ptr = $this; |
} while ($_ptr !== null) { |
if (isset($_ptr->tpl_vars[$variable])) { |
// found it, return it |
return $_ptr->tpl_vars[$variable]; |
} |
// not found, try at parent |
if ($search_parents) { |
$_ptr = $_ptr->parent; |
} else { |
$_ptr = null; |
} |
} |
if (isset(Plugin_Smarty_Smarty::$global_tpl_vars[$variable])) { |
// found it, return it |
return Plugin_Smarty_Smarty::$global_tpl_vars[$variable]; |
} |
if ($this->smarty->error_unassigned && $error_enable) { |
// force a notice |
$x = $$variable; |
} |
return new Plugin_Smarty_UndefinedSmartyVariable; |
} |
/** |
* gets a config variable |
* |
* @param string $variable the name of the config variable |
* @return mixed the value of the config variable |
*/ |
public function getConfigVariable($variable, $error_enable = true) |
{ |
$_ptr = $this; |
while ($_ptr !== null) { |
if (isset($_ptr->config_vars[$variable])) { |
// found it, return it |
return $_ptr->config_vars[$variable]; |
} |
// not found, try at parent |
$_ptr = $_ptr->parent; |
} |
if ($this->smarty->error_unassigned && $error_enable) { |
// force a notice |
$x = $$variable; |
} |
return null; |
} |
/** |
* gets a stream variable |
* |
* @param string $variable the stream of the variable |
* @return mixed the value of the stream variable |
*/ |
public function getStreamVariable($variable) |
{ |
$_result = ''; |
$fp = fopen($variable, 'r+'); |
if ($fp) { |
while (!feof($fp) && ($current_line = fgets($fp)) !== false ) { |
$_result .= $current_line; |
} |
fclose($fp); |
return $_result; |
} |
if ($this->smarty->error_unassigned) { |
throw new Plugin_Smarty_Exception('Undefined stream variable "' . $variable . '"'); |
} else { |
return null; |
} |
} |
/** |
* Returns a single or all config variables |
* |
* @param string $varname variable name or null |
* @return string variable value or or array of variables |
*/ |
public function getConfigVars($varname = null, $search_parents = true) |
{ |
$_ptr = $this; |
$var_array = array(); |
while ($_ptr !== null) { |
if (isset($varname)) { |
if (isset($_ptr->config_vars[$varname])) { |
return $_ptr->config_vars[$varname]; |
} |
} else { |
$var_array = array_merge($_ptr->config_vars, $var_array); |
} |
// not found, try at parent |
if ($search_parents) { |
$_ptr = $_ptr->parent; |
} else { |
$_ptr = null; |
} |
} |
if (isset($varname)) { |
return ''; |
} else { |
return $var_array; |
} |
} |
/** |
* Deassigns a single or all config variables |
* |
* @param string $varname variable name or null |
* @return Plugin_Smarty_InternalData current Plugin_Smarty_InternalData (or Smarty or Plugin_Smarty_InternalTemplate) instance for chaining |
*/ |
public function clearConfig($varname = null) |
{ |
if (isset($varname)) { |
unset($this->config_vars[$varname]); |
} else { |
$this->config_vars = array(); |
} |
return $this; |
} |
} |
/trunk/classes/internalcacheresourcefile.php |
---|
New file |
0,0 → 1,277 |
<?php |
/** |
* Smarty Internal Plugin CacheResource File |
* |
* @package Smarty |
* @subpackage Cacher |
* @author Uwe Tews |
* @author Rodney Rehm |
*/ |
/** |
* This class does contain all necessary methods for the HTML cache on file system |
* |
* Implements the file system as resource for the HTML cache Version ussing nocache inserts. |
* |
* @package Smarty |
* @subpackage Cacher |
*/ |
class Plugin_Smarty_InternalCacheResourceFile extends Plugin_Smarty_CacheResource |
{ |
/** |
* populate Cached Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @return void |
*/ |
public function populate(Plugin_Smarty_TemplateCached $cached, Plugin_Smarty_InternalTemplate $_template) |
{ |
$_source_file_path = str_replace(':', '.', $_template->source->filepath); |
$_cache_id = isset($_template->cache_id) ? preg_replace('![^\w\|]+!', '_', $_template->cache_id) : null; |
$_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null; |
$_filepath = $_template->source->uid; |
// if use_sub_dirs, break file into directories |
if ($_template->smarty->use_sub_dirs) { |
$_filepath = substr($_filepath, 0, 2) . DS |
. substr($_filepath, 2, 2) . DS |
. substr($_filepath, 4, 2) . DS |
. $_filepath; |
} |
$_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; |
if (isset($_cache_id)) { |
$_cache_id = str_replace('|', $_compile_dir_sep, $_cache_id) . $_compile_dir_sep; |
} else { |
$_cache_id = ''; |
} |
if (isset($_compile_id)) { |
$_compile_id = $_compile_id . $_compile_dir_sep; |
} else { |
$_compile_id = ''; |
} |
$_cache_dir = $_template->smarty->getCacheDir(); |
if ($_template->smarty->cache_locking) { |
// create locking file name |
// relative file name? |
if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_cache_dir)) { |
$_lock_dir = rtrim(getcwd(), '/\\') . DS . $_cache_dir; |
} else { |
$_lock_dir = $_cache_dir; |
} |
$cached->lock_id = $_lock_dir.sha1($_cache_id.$_compile_id.$_template->source->uid).'.lock'; |
} |
$cached->filepath = $_cache_dir . $_cache_id . $_compile_id . $_filepath . '.' . basename($_source_file_path) . '.php'; |
$cached->timestamp = @filemtime($cached->filepath); |
$cached->exists = !!$cached->timestamp; |
} |
/** |
* populate Cached Object with timestamp and exists from Resource |
* |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return void |
*/ |
public function populateTimestamp(Plugin_Smarty_TemplateCached $cached) |
{ |
$cached->timestamp = @filemtime($cached->filepath); |
$cached->exists = !!$cached->timestamp; |
} |
/** |
* Read the cached template and process its header |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return booelan true or false if the cached content does not exist |
*/ |
public function process(Plugin_Smarty_InternalTemplate $_template, Plugin_Smarty_TemplateCached $cached=null) |
{ |
$_smarty_tpl = $_template; |
return @include $_template->cached->filepath; |
} |
/** |
* Write the rendered template output to cache |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param string $content content to cache |
* @return boolean success |
*/ |
public function writeCachedContent(Plugin_Smarty_InternalTemplate $_template, $content) |
{ |
if (Plugin_Smarty_InternalWriteFile::writeFile($_template->cached->filepath, $content, $_template->smarty) === true) { |
$_template->cached->timestamp = @filemtime($_template->cached->filepath); |
$_template->cached->exists = !!$_template->cached->timestamp; |
if ($_template->cached->exists) { |
return true; |
} |
} |
return false; |
} |
/** |
* Empty cache |
* |
* @param Plugin_Smarty_InternalTemplate $_template template object |
* @param integer $exp_time expiration time (number of seconds, not timestamp) |
* @return integer number of cache files deleted |
*/ |
public function clearAll(Plugin_Smarty_Smarty $smarty, $exp_time = null) |
{ |
return $this->clear($smarty, null, null, null, $exp_time); |
} |
/** |
* Empty cache for a specific template |
* |
* @param Plugin_Smarty_Smarty $_template template object |
* @param string $resource_name template name |
* @param string $cache_id cache id |
* @param string $compile_id compile id |
* @param integer $exp_time expiration time (number of seconds, not timestamp) |
* @return integer number of cache files deleted |
*/ |
public function clear(Plugin_Smarty_Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time) |
{ |
$_cache_id = isset($cache_id) ? preg_replace('![^\w\|]+!', '_', $cache_id) : null; |
$_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null; |
$_dir_sep = $smarty->use_sub_dirs ? '/' : '^'; |
$_compile_id_offset = $smarty->use_sub_dirs ? 3 : 0; |
$_dir = $smarty->getCacheDir(); |
$_dir_length = strlen($_dir); |
if (isset($_cache_id)) { |
$_cache_id_parts = explode('|', $_cache_id); |
$_cache_id_parts_count = count($_cache_id_parts); |
if ($smarty->use_sub_dirs) { |
foreach ($_cache_id_parts as $id_part) { |
$_dir .= $id_part . DS; |
} |
} |
} |
if (isset($resource_name)) { |
$_save_stat = $smarty->caching; |
$smarty->caching = true; |
$tpl = new $smarty->template_class($resource_name, $smarty); |
$smarty->caching = $_save_stat; |
// remove from template cache |
$tpl->source; // have the template registered before unset() |
if ($smarty->allow_ambiguous_resources) { |
$_templateId = $tpl->source->unique_resource . $tpl->cache_id . $tpl->compile_id; |
} else { |
$_templateId = $smarty->joined_template_dir . '#' . $resource_name . $tpl->cache_id . $tpl->compile_id; |
} |
if (isset($_templateId[150])) { |
$_templateId = sha1($_templateId); |
} |
unset($smarty->template_objects[$_templateId]); |
if ($tpl->source->exists) { |
$_resourcename_parts = basename(str_replace('^', '/', $tpl->cached->filepath)); |
} else { |
return 0; |
} |
} |
$_count = 0; |
$_time = time(); |
if (file_exists($_dir)) { |
$_cacheDirs = new RecursiveDirectoryIterator($_dir); |
$_cache = new RecursiveIteratorIterator($_cacheDirs, RecursiveIteratorIterator::CHILD_FIRST); |
foreach ($_cache as $_file) { |
if (substr(basename($_file->getPathname()),0,1) == '.' || strpos($_file, '.svn') !== false) continue; |
// directory ? |
if ($_file->isDir()) { |
if (!$_cache->isDot()) { |
// delete folder if empty |
@rmdir($_file->getPathname()); |
} |
} else { |
$_parts = explode($_dir_sep, str_replace('\\', '/', substr((string) $_file, $_dir_length))); |
$_parts_count = count($_parts); |
// check name |
if (isset($resource_name)) { |
if ($_parts[$_parts_count-1] != $_resourcename_parts) { |
continue; |
} |
} |
// check compile id |
if (isset($_compile_id) && (!isset($_parts[$_parts_count-2 - $_compile_id_offset]) || $_parts[$_parts_count-2 - $_compile_id_offset] != $_compile_id)) { |
continue; |
} |
// check cache id |
if (isset($_cache_id)) { |
// count of cache id parts |
$_parts_count = (isset($_compile_id)) ? $_parts_count - 2 - $_compile_id_offset : $_parts_count - 1 - $_compile_id_offset; |
if ($_parts_count < $_cache_id_parts_count) { |
continue; |
} |
for ($i = 0; $i < $_cache_id_parts_count; $i++) { |
if ($_parts[$i] != $_cache_id_parts[$i]) continue 2; |
} |
} |
// expired ? |
if (isset($exp_time)) { |
if ($exp_time < 0) { |
preg_match('#\'cache_lifetime\' =>\s*(\d*)#', file_get_contents($_file), $match); |
if ($_time < (@filemtime($_file) + $match[1])) { |
continue; |
} |
} else { |
if ($_time - @filemtime($_file) < $exp_time) { |
continue; |
} |
} |
} |
$_count += @unlink((string) $_file) ? 1 : 0; |
} |
} |
} |
return $_count; |
} |
/** |
* Check is cache is locked for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
* @return booelan true or false if cache is locked |
*/ |
public function hasLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
if (version_compare(PHP_VERSION, '5.3.0', '>=')) { |
clearstatcache(true, $cached->lock_id); |
} else { |
clearstatcache(); |
} |
$t = @filemtime($cached->lock_id); |
return $t && (time() - $t < $smarty->locking_timeout); |
} |
/** |
* Lock cache for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
*/ |
public function acquireLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
$cached->is_locked = true; |
touch($cached->lock_id); |
} |
/** |
* Unlock cache for this template |
* |
* @param Plugin_Smarty_Smarty $smarty Smarty object |
* @param Plugin_Smarty_TemplateCached $cached cached object |
*/ |
public function releaseLock(Plugin_Smarty_Smarty $smarty, Plugin_Smarty_TemplateCached $cached) |
{ |
$cached->is_locked = false; |
@unlink($cached->lock_id); |
} |
} |
/trunk/classes/internalcompilesection.php |
---|
New file |
0,0 → 1,138 |
<?php |
/** |
* Smarty Internal Plugin Compile Section |
* |
* Compiles the {section} {sectionelse} {/section} tags |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Section Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileSection extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $required_attributes = array('name', 'loop'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('name', 'loop'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('start', 'step', 'max', 'show'); |
/** |
* Compiles code for the {section} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
$this->openTag($compiler, 'section', array('section', $compiler->nocache)); |
// maybe nocache because of nocache variables |
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache; |
$output = "<?php "; |
$section_name = $_attr['name']; |
$output .= "if (isset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name])) unset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]);\n"; |
$section_props = "\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]"; |
foreach ($_attr as $attr_name => $attr_value) { |
switch ($attr_name) { |
case 'loop': |
$output .= "{$section_props}['loop'] = is_array(\$_loop=$attr_value) ? count(\$_loop) : max(0, (int) \$_loop); unset(\$_loop);\n"; |
break; |
case 'show': |
if (is_bool($attr_value)) |
$show_attr_value = $attr_value ? 'true' : 'false'; |
else |
$show_attr_value = "(bool) $attr_value"; |
$output .= "{$section_props}['show'] = $show_attr_value;\n"; |
break; |
case 'name': |
$output .= "{$section_props}['$attr_name'] = $attr_value;\n"; |
break; |
case 'max': |
case 'start': |
$output .= "{$section_props}['$attr_name'] = (int) $attr_value;\n"; |
break; |
case 'step': |
$output .= "{$section_props}['$attr_name'] = ((int) $attr_value) == 0 ? 1 : (int) $attr_value;\n"; |
break; |
} |
} |
if (!isset($_attr['show'])) |
$output .= "{$section_props}['show'] = true;\n"; |
if (!isset($_attr['loop'])) |
$output .= "{$section_props}['loop'] = 1;\n"; |
if (!isset($_attr['max'])) |
$output .= "{$section_props}['max'] = {$section_props}['loop'];\n"; |
else |
$output .= "if ({$section_props}['max'] < 0)\n" . " {$section_props}['max'] = {$section_props}['loop'];\n"; |
if (!isset($_attr['step'])) |
$output .= "{$section_props}['step'] = 1;\n"; |
if (!isset($_attr['start'])) |
$output .= "{$section_props}['start'] = {$section_props}['step'] > 0 ? 0 : {$section_props}['loop']-1;\n"; |
else { |
$output .= "if ({$section_props}['start'] < 0)\n" . " {$section_props}['start'] = max({$section_props}['step'] > 0 ? 0 : -1, {$section_props}['loop'] + {$section_props}['start']);\n" . "else\n" . " {$section_props}['start'] = min({$section_props}['start'], {$section_props}['step'] > 0 ? {$section_props}['loop'] : {$section_props}['loop']-1);\n"; |
} |
$output .= "if ({$section_props}['show']) {\n"; |
if (!isset($_attr['start']) && !isset($_attr['step']) && !isset($_attr['max'])) { |
$output .= " {$section_props}['total'] = {$section_props}['loop'];\n"; |
} else { |
$output .= " {$section_props}['total'] = min(ceil(({$section_props}['step'] > 0 ? {$section_props}['loop'] - {$section_props}['start'] : {$section_props}['start']+1)/abs({$section_props}['step'])), {$section_props}['max']);\n"; |
} |
$output .= " if ({$section_props}['total'] == 0)\n" . " {$section_props}['show'] = false;\n" . "} else\n" . " {$section_props}['total'] = 0;\n"; |
$output .= "if ({$section_props}['show']):\n"; |
$output .= " |
for ({$section_props}['index'] = {$section_props}['start'], {$section_props}['iteration'] = 1; |
{$section_props}['iteration'] <= {$section_props}['total']; |
{$section_props}['index'] += {$section_props}['step'], {$section_props}['iteration']++):\n"; |
$output .= "{$section_props}['rownum'] = {$section_props}['iteration'];\n"; |
$output .= "{$section_props}['index_prev'] = {$section_props}['index'] - {$section_props}['step'];\n"; |
$output .= "{$section_props}['index_next'] = {$section_props}['index'] + {$section_props}['step'];\n"; |
$output .= "{$section_props}['first'] = ({$section_props}['iteration'] == 1);\n"; |
$output .= "{$section_props}['last'] = ({$section_props}['iteration'] == {$section_props}['total']);\n"; |
$output .= "?>"; |
return $output; |
} |
} |
/trunk/classes/internalcompileconfigload.php |
---|
New file |
0,0 → 1,83 |
<?php |
/** |
* Smarty Internal Plugin Compile Config Load |
* |
* Compiles the {config load} tag |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Config Load Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileConfigLoad extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $required_attributes = array('file'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $shorttag_order = array('file','section'); |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('section', 'scope'); |
/** |
* Compiles code for the {config_load} tag |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
static $_is_legal_scope = array('local' => true,'parent' => true,'root' => true,'global' => true); |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); |
} |
// save posible attributes |
$conf_file = $_attr['file']; |
if (isset($_attr['section'])) { |
$section = $_attr['section']; |
} else { |
$section = 'null'; |
} |
$scope = 'local'; |
// scope setup |
if (isset($_attr['scope'])) { |
$_attr['scope'] = trim($_attr['scope'], "'\""); |
if (isset($_is_legal_scope[$_attr['scope']])) { |
$scope = $_attr['scope']; |
} else { |
$compiler->trigger_template_error('illegal value for "scope" attribute', $compiler->lex->taglineno); |
} |
} |
// create config object |
$_output = "<?php \$_config = new Plugin_Smarty_InternalConfig($conf_file, \$_smarty_tpl->smarty, \$_smarty_tpl);"; |
$_output .= "\$_config->loadConfigVars($section, '$scope'); ?>"; |
return $_output; |
} |
} |
/trunk/classes/internalcompileprivateobjectfunction.php |
---|
New file |
0,0 → 1,85 |
<?php |
/** |
* Smarty Internal Plugin Compile Object Funtion |
* |
* Compiles code for registered objects as function |
* |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Object Function Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompilePrivateObjectFunction extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Attribute definition: Overwrites base class. |
* |
* @var array |
* @see Plugin_Smarty_InternalCompileBase |
*/ |
public $optional_attributes = array('_any'); |
/** |
* Compiles code for the execution of function plugin |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @param array $parameter array with compilation parameter |
* @param string $tag name of function |
* @param string $method name of method to call |
* @return string compiled code |
*/ |
public function compile($args, $compiler, $parameter, $tag, $method) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->tag_nocache = true; |
} |
unset($_attr['nocache']); |
$_assign = null; |
if (isset($_attr['assign'])) { |
$_assign = $_attr['assign']; |
unset($_attr['assign']); |
} |
// method or property ? |
if (method_exists($compiler->smarty->registered_objects[$tag][0], $method)) { |
// convert attributes into parameter array string |
if ($compiler->smarty->registered_objects[$tag][2]) { |
$_paramsArray = array(); |
foreach ($_attr as $_key => $_value) { |
if (is_int($_key)) { |
$_paramsArray[] = "$_key=>$_value"; |
} else { |
$_paramsArray[] = "'$_key'=>$_value"; |
} |
} |
$_params = 'array(' . implode(",", $_paramsArray) . ')'; |
$return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}({$_params},\$_smarty_tpl)"; |
} else { |
$_params = implode(",", $_attr); |
$return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}({$_params})"; |
} |
} else { |
// object property |
$return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}"; |
} |
if (empty($_assign)) { |
// This tag does create output |
$compiler->has_output = true; |
$output = "<?php echo {$return};?>\n"; |
} else { |
$output = "<?php \$_smarty_tpl->assign({$_assign},{$return});?>\n"; |
} |
return $output; |
} |
} |
/trunk/classes/internalfilterhandler.php |
---|
New file |
0,0 → 1,68 |
<?php |
/** |
* Smarty Internal Plugin Filter Handler |
* |
* Smarty filter handler class |
* |
* @package Smarty |
* @subpackage PluginsInternal |
* @author Uwe Tews |
*/ |
/** |
* Class for filter processing |
* |
* @package Smarty |
* @subpackage PluginsInternal |
*/ |
class Plugin_Smarty_InternalFilterHandler |
{ |
/** |
* Run filters over content |
* |
* The filters will be lazy loaded if required |
* class name format: Smarty_FilterType_FilterName |
* plugin filename format: filtertype.filtername.php |
* Smarty2 filter plugins could be used |
* |
* @param string $type the type of filter ('pre','post','output') which shall run |
* @param string $content the content which shall be processed by the filters |
* @param Plugin_Smarty_InternalTemplate $template template object |
* @return string the filtered content |
*/ |
public static function runFilter($type, $content, Plugin_Smarty_InternalTemplate $template) |
{ |
$output = $content; |
// loop over autoload filters of specified type |
if (!empty($template->smarty->autoload_filters[$type])) { |
foreach ((array) $template->smarty->autoload_filters[$type] as $name) { |
$plugin_name = "Smarty_{$type}filter_{$name}"; |
if ($template->smarty->loadPlugin($plugin_name)) { |
if (function_exists($plugin_name)) { |
// use loaded Smarty2 style plugin |
$output = $plugin_name($output, $template); |
} elseif (class_exists($plugin_name, false)) { |
// loaded class of filter plugin |
$output = call_user_func(array($plugin_name, 'execute'), $output, $template); |
} |
} else { |
// nothing found, throw exception |
throw new Plugin_Smarty_Exception("Unable to load filter {$plugin_name}"); |
} |
} |
} |
// loop over registerd filters of specified type |
if (!empty($template->smarty->registered_filters[$type])) { |
foreach ($template->smarty->registered_filters[$type] as $key => $name) { |
if (is_array($template->smarty->registered_filters[$type][$key])) { |
$output = call_user_func($template->smarty->registered_filters[$type][$key], $output, $template); |
} else { |
$output = $template->smarty->registered_filters[$type][$key]($output, $template); |
} |
} |
} |
// return filtered output |
return $output; |
} |
} |
/trunk/classes/resourcecustom.php |
---|
New file |
0,0 → 1,94 |
<?php |
/** |
* Smarty Resource Plugin |
* |
* @package Smarty |
* @subpackage TemplateResources |
* @author Rodney Rehm |
*/ |
/** |
* Smarty Resource Plugin |
* |
* Wrapper Implementation for custom resource plugins |
* |
* @package Smarty |
* @subpackage TemplateResources |
*/ |
abstract class Plugin_Smarty_ResourceCustom extends Plugin_Smarty_Resource |
{ |
/** |
* fetch template and its modification time from data source |
* |
* @param string $name template name |
* @param string &$source template source |
* @param integer &$mtime template modification timestamp (epoch) |
*/ |
abstract protected function fetch($name, &$source, &$mtime); |
/** |
* Fetch template's modification timestamp from data source |
* |
* {@internal implementing this method is optional. |
* Only implement it if modification times can be accessed faster than loading the complete template source.}} |
* |
* @param string $name template name |
* @return integer|boolean timestamp (epoch) the template was modified, or false if not found |
*/ |
protected function fetchTimestamp($name) |
{ |
return null; |
} |
/** |
* populate Source Object with meta data from Resource |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @param Plugin_Smarty_InternalTemplate $_template template object |
*/ |
public function populate(Plugin_Smarty_TemplateSource $source, Plugin_Smarty_InternalTemplate $_template=null) |
{ |
$source->filepath = strtolower($source->type . ':' . $source->name); |
$source->uid = sha1($source->type . ':' . $source->name); |
$mtime = $this->fetchTimestamp($source->name); |
if ($mtime !== null) { |
$source->timestamp = $mtime; |
} else { |
$this->fetch($source->name, $content, $timestamp); |
$source->timestamp = isset($timestamp) ? $timestamp : false; |
if( isset($content) ) |
$source->content = $content; |
} |
$source->exists = !!$source->timestamp; |
} |
/** |
* Load template's source into current template object |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string template source |
* @throws Plugin_Smarty_Exception if source cannot be loaded |
*/ |
public function getContent(Plugin_Smarty_TemplateSource $source) |
{ |
$this->fetch($source->name, $content, $timestamp); |
if (isset($content)) { |
return $content; |
} |
throw new Plugin_Smarty_Exception("Unable to read template {$source->type} '{$source->name}'"); |
} |
/** |
* Determine basename for compiled filename |
* |
* @param Plugin_Smarty_TemplateSource $source source object |
* @return string resource's basename |
*/ |
protected function getBasename(Plugin_Smarty_TemplateSource $source) |
{ |
return basename($source->name); |
} |
} |
/trunk/classes/internalcompileforclose.php |
---|
New file |
0,0 → 1,37 |
<?php |
/** |
* Smarty Internal Plugin Compile Forclose Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileForclose extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {/for} tag |
* |
* @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) |
{ |
// check and get attributes |
$_attr = $this->getAttributes($compiler, $args); |
// must endblock be nocache? |
if ($compiler->nocache) { |
$compiler->tag_nocache = true; |
} |
list($openTag, $compiler->nocache) = $this->closeTag($compiler, array('for', 'forelse')); |
if ($openTag == 'forelse') { |
return "<?php } ?>"; |
} else { |
return "<?php }} ?>"; |
} |
} |
} |
/trunk/classes/internalcompilerdelim.php |
---|
New file |
0,0 → 1,40 |
<?php |
/** |
* Smarty Internal Plugin Compile Rdelim |
* |
* Compiles the {rdelim} tag |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
/** |
* Smarty Internal Plugin Compile Rdelim Class |
* |
* @package Smarty |
* @subpackage Compiler |
*/ |
class Plugin_Smarty_InternalCompileRdelim extends Plugin_Smarty_InternalCompileBase |
{ |
/** |
* Compiles code for the {rdelim} tag |
* |
* This tag does output the right delimiter. |
* |
* @param array $args array with attributes from parser |
* @param object $compiler compiler object |
* @return string compiled code |
*/ |
public function compile($args, $compiler) |
{ |
$_attr = $this->getAttributes($compiler, $args); |
if ($_attr['nocache'] === true) { |
$compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); |
} |
// this tag does not return compiled code |
$compiler->has_code = true; |
return $compiler->smarty->right_delimiter; |
} |
} |
/trunk/classes/internaltemplateparser.php |
---|
New file |
0,0 → 1,3179 |
<?php |
/** |
* Smarty Internal Plugin Templateparser |
* |
* This is the template parser. |
* It is generated from the internal.templateparser.y file |
* @package Smarty |
* @subpackage Compiler |
* @author Uwe Tews |
*/ |
class TP_yyStackEntry |
{ |
public $stateno; /* The state-number */ |
public $major; /* The major token value. This is the code |
** number for the token at this stack level */ |
public $minor; /* The user-supplied minor token value. This |
** is the value of the token */ |
}; |
#line 13 "smarty_internal_templateparser.y" |
class Plugin_Smarty_InternalTemplateparser#line 80 "smarty_internal_templateparser.php" |
{ |
#line 15 "smarty_internal_templateparser.y" |
const Err1 = "Security error: Call to private object member not allowed"; |
const Err2 = "Security error: Call to dynamic object member not allowed"; |
const Err3 = "PHP in template not allowed. Use SmartyBC to enable it"; |
// states whether the parse was successful or not |
public $successful = true; |
public $retvalue = 0; |
public static $prefix_number = 0; |
private $lex; |
private $internalError = false; |
private $strip = false; |
function __construct($lex, $compiler) { |
$this->lex = $lex; |
$this->compiler = $compiler; |
$this->smarty = $this->compiler->smarty; |
$this->template = $this->compiler->template; |
$this->compiler->has_variable_string = false; |
$this->compiler->prefix_code = array(); |
$this->block_nesting_level = 0; |
if ($this->security = isset($this->smarty->security_policy)) { |
$this->php_handling = $this->smarty->security_policy->php_handling; |
} else { |
$this->php_handling = $this->smarty->php_handling; |
} |
$this->is_xml = false; |
$this->asp_tags = (ini_get('asp_tags') != '0'); |
$this->current_buffer = $this->root_buffer = new Plugin_Smarty_TemplateBuffer($this); |
} |
public static function escape_start_tag($tag_text) { |
$tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag |
return $tag; |
} |
public static function escape_end_tag($tag_text) { |
return '?<?php ?>>'; |
} |
public function compileVariable($variable) { |
if (strpos($variable,'(') == 0) { |
// not a variable variable |
$var = trim($variable,'\''); |
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable($var, null, true, false)->nocache; |
$this->template->properties['variables'][$var] = $this->compiler->tag_nocache|$this->compiler->nocache; |
} |
// return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)'; |
return '$_smarty_tpl->tpl_vars['. $variable .']->value'; |
} |
#line 133 "smarty_internal_templateparser.php" |
const TP_VERT = 1; |
const TP_COLON = 2; |
const TP_RDEL = 3; |
const TP_COMMENT = 4; |
const TP_PHPSTARTTAG = 5; |
const TP_PHPENDTAG = 6; |
const TP_ASPSTARTTAG = 7; |
const TP_ASPENDTAG = 8; |
const TP_FAKEPHPSTARTTAG = 9; |
const TP_XMLTAG = 10; |
const TP_TEXT = 11; |
const TP_STRIPON = 12; |
const TP_STRIPOFF = 13; |
const TP_BLOCKSOURCE = 14; |
const TP_LITERALSTART = 15; |
const TP_LITERALEND = 16; |
const TP_LITERAL = 17; |
const TP_LDEL = 18; |
const TP_DOLLAR = 19; |
const TP_ID = 20; |
const TP_EQUAL = 21; |
const TP_PTR = 22; |
const TP_LDELIF = 23; |
const TP_LDELFOR = 24; |
const TP_SEMICOLON = 25; |
const TP_INCDEC = 26; |
const TP_TO = 27; |
const TP_STEP = 28; |
const TP_LDELFOREACH = 29; |
const TP_SPACE = 30; |
const TP_AS = 31; |
const TP_APTR = 32; |
const TP_LDELSETFILTER = 33; |
const TP_SMARTYBLOCKCHILDPARENT = 34; |
const TP_LDELSLASH = 35; |
const TP_ATTR = 36; |
const TP_INTEGER = 37; |
const TP_COMMA = 38; |
const TP_OPENP = 39; |
const TP_CLOSEP = 40; |
const TP_MATH = 41; |
const TP_UNIMATH = 42; |
const TP_ANDSYM = 43; |
const TP_ISIN = 44; |
const TP_ISDIVBY = 45; |
const TP_ISNOTDIVBY = 46; |
const TP_ISEVEN = 47; |
const TP_ISNOTEVEN = 48; |
const TP_ISEVENBY = 49; |
const TP_ISNOTEVENBY = 50; |
const TP_ISODD = 51; |
const TP_ISNOTODD = 52; |
const TP_ISODDBY = 53; |
const TP_ISNOTODDBY = 54; |
const TP_INSTANCEOF = 55; |
const TP_QMARK = 56; |
const TP_NOT = 57; |
const TP_TYPECAST = 58; |
const TP_HEX = 59; |
const TP_DOT = 60; |
const TP_SINGLEQUOTESTRING = 61; |
const TP_DOUBLECOLON = 62; |
const TP_AT = 63; |
const TP_HATCH = 64; |
const TP_OPENB = 65; |
const TP_CLOSEB = 66; |
const TP_EQUALS = 67; |
const TP_NOTEQUALS = 68; |
const TP_GREATERTHAN = 69; |
const TP_LESSTHAN = 70; |
const TP_GREATEREQUAL = 71; |
const TP_LESSEQUAL = 72; |
const TP_IDENTITY = 73; |
const TP_NONEIDENTITY = 74; |
const TP_MOD = 75; |
const TP_LAND = 76; |
const TP_LOR = 77; |
const TP_LXOR = 78; |
const TP_QUOTE = 79; |
const TP_BACKTICK = 80; |
const TP_DOLLARID = 81; |
const YY_NO_ACTION = 570; |
const YY_ACCEPT_ACTION = 569; |
const YY_ERROR_ACTION = 568; |
const YY_SZ_ACTTAB = 2407; |
static public $yy_action = array( |
/* 0 */ 219, 309, 305, 301, 302, 303, 304, 310, 311, 317, |
/* 10 */ 318, 319, 201, 30, 273, 9, 33, 238, 280, 15, |
/* 20 */ 5, 108, 235, 234, 220, 7, 126, 42, 30, 30, |
/* 30 */ 259, 211, 256, 495, 15, 15, 10, 33, 495, 280, |
/* 40 */ 46, 47, 51, 45, 24, 14, 352, 353, 39, 37, |
/* 50 */ 278, 359, 12, 25, 219, 219, 326, 434, 219, 192, |
/* 60 */ 434, 569, 95, 263, 227, 306, 360, 361, 358, 357, |
/* 70 */ 354, 355, 356, 342, 341, 328, 329, 330, 292, 219, |
/* 80 */ 202, 322, 242, 30, 434, 231, 207, 434, 143, 15, |
/* 90 */ 434, 35, 158, 434, 46, 47, 51, 45, 24, 14, |
/* 100 */ 352, 353, 39, 37, 278, 359, 12, 25, 219, 48, |
/* 110 */ 32, 219, 48, 391, 196, 2, 31, 138, 321, 4, |
/* 120 */ 360, 361, 358, 357, 354, 355, 356, 342, 341, 328, |
/* 130 */ 329, 330, 127, 48, 290, 349, 251, 30, 145, 140, |
/* 140 */ 30, 207, 264, 15, 200, 322, 15, 334, 46, 47, |
/* 150 */ 51, 45, 24, 14, 352, 353, 39, 37, 278, 359, |
/* 160 */ 12, 25, 219, 289, 219, 48, 431, 297, 219, 33, |
/* 170 */ 396, 280, 18, 191, 360, 361, 358, 357, 354, 355, |
/* 180 */ 356, 342, 341, 328, 329, 330, 300, 285, 286, 287, |
/* 190 */ 299, 206, 219, 431, 428, 194, 201, 315, 314, 431, |
/* 200 */ 207, 281, 46, 47, 51, 45, 24, 14, 352, 353, |
/* 210 */ 39, 37, 278, 359, 12, 25, 219, 33, 48, 280, |
/* 220 */ 34, 30, 48, 197, 322, 276, 158, 15, 360, 361, |
/* 230 */ 358, 357, 354, 355, 356, 342, 341, 328, 329, 330, |
/* 240 */ 230, 338, 16, 289, 103, 179, 244, 219, 295, 2, |
/* 250 */ 41, 33, 265, 280, 283, 148, 46, 47, 51, 45, |
/* 260 */ 24, 14, 352, 353, 39, 37, 278, 359, 12, 25, |
/* 270 */ 219, 207, 145, 43, 132, 189, 109, 333, 307, 227, |
/* 280 */ 306, 190, 360, 361, 358, 357, 354, 355, 356, 342, |
/* 290 */ 341, 328, 329, 330, 20, 22, 248, 339, 219, 99, |
/* 300 */ 174, 48, 324, 33, 346, 280, 18, 288, 207, 283, |
/* 310 */ 46, 47, 51, 45, 24, 14, 352, 353, 39, 37, |
/* 320 */ 278, 359, 12, 25, 219, 289, 207, 30, 41, 110, |
/* 330 */ 275, 2, 41, 15, 272, 266, 360, 361, 358, 357, |
/* 340 */ 354, 355, 356, 342, 341, 328, 329, 330, 242, 40, |
/* 350 */ 236, 347, 104, 177, 145, 219, 44, 316, 148, 135, |
/* 360 */ 228, 27, 283, 269, 46, 47, 51, 45, 24, 14, |
/* 370 */ 352, 353, 39, 37, 278, 359, 12, 25, 219, 207, |
/* 380 */ 208, 33, 7, 280, 245, 239, 136, 173, 241, 279, |
/* 390 */ 360, 361, 358, 357, 354, 355, 356, 342, 341, 328, |
/* 400 */ 329, 330, 29, 158, 106, 13, 122, 171, 181, 6, |
/* 410 */ 33, 15, 226, 33, 219, 237, 283, 283, 46, 47, |
/* 420 */ 51, 45, 24, 14, 352, 353, 39, 37, 278, 359, |
/* 430 */ 12, 25, 219, 205, 205, 252, 313, 238, 312, 235, |
/* 440 */ 232, 195, 97, 127, 360, 361, 358, 357, 354, 355, |
/* 450 */ 356, 342, 341, 328, 329, 330, 28, 320, 230, 105, |
/* 460 */ 182, 164, 176, 33, 279, 254, 282, 186, 207, 283, |
/* 470 */ 283, 253, 46, 47, 51, 45, 24, 14, 352, 353, |
/* 480 */ 39, 37, 278, 359, 12, 25, 219, 205, 260, 107, |
/* 490 */ 235, 262, 33, 193, 214, 332, 166, 198, 360, 361, |
/* 500 */ 358, 357, 354, 355, 356, 342, 341, 328, 329, 330, |
/* 510 */ 137, 175, 167, 291, 308, 344, 185, 261, 267, 161, |
/* 520 */ 283, 283, 128, 337, 124, 283, 46, 47, 51, 45, |
/* 530 */ 24, 14, 352, 353, 39, 37, 278, 359, 12, 25, |
/* 540 */ 219, 38, 205, 203, 141, 169, 257, 134, 35, 130, |
/* 550 */ 156, 114, 360, 361, 358, 357, 354, 355, 356, 342, |
/* 560 */ 341, 328, 329, 330, 320, 158, 320, 241, 36, 293, |
/* 570 */ 298, 94, 21, 26, 284, 219, 292, 168, 271, 162, |
/* 580 */ 46, 47, 51, 45, 24, 14, 352, 353, 39, 37, |
/* 590 */ 278, 359, 12, 25, 219, 279, 229, 205, 44, 281, |
/* 600 */ 187, 17, 270, 331, 98, 127, 360, 361, 358, 357, |
/* 610 */ 354, 355, 356, 342, 341, 328, 329, 330, 199, 320, |
/* 620 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, |
/* 630 */ 331, 331, 331, 331, 46, 47, 51, 45, 24, 14, |
/* 640 */ 352, 353, 39, 37, 278, 359, 12, 25, 219, 331, |
/* 650 */ 268, 331, 331, 331, 331, 331, 331, 331, 125, 115, |
/* 660 */ 360, 361, 358, 357, 354, 355, 356, 342, 341, 328, |
/* 670 */ 329, 330, 279, 331, 320, 331, 331, 331, 331, 331, |
/* 680 */ 331, 331, 331, 331, 331, 331, 331, 331, 46, 47, |
/* 690 */ 51, 45, 24, 14, 352, 353, 39, 37, 278, 359, |
/* 700 */ 12, 25, 219, 331, 204, 331, 331, 331, 331, 331, |
/* 710 */ 331, 159, 100, 116, 360, 361, 358, 357, 354, 355, |
/* 720 */ 356, 342, 341, 328, 329, 330, 320, 320, 320, 331, |
/* 730 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, |
/* 740 */ 331, 331, 46, 47, 51, 45, 24, 14, 352, 353, |
/* 750 */ 39, 37, 278, 359, 12, 25, 219, 331, 331, 331, |
/* 760 */ 331, 331, 331, 331, 331, 102, 117, 331, 360, 361, |
/* 770 */ 358, 357, 354, 355, 356, 342, 341, 328, 329, 330, |
/* 780 */ 320, 320, 331, 331, 331, 331, 331, 331, 331, 331, |
/* 790 */ 331, 331, 331, 331, 331, 331, 46, 47, 51, 45, |
/* 800 */ 24, 14, 352, 353, 39, 37, 278, 359, 12, 25, |
/* 810 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, |
/* 820 */ 158, 331, 360, 361, 358, 357, 354, 355, 356, 342, |
/* 830 */ 341, 328, 329, 330, 331, 331, 331, 331, 46, 47, |
/* 840 */ 51, 45, 24, 14, 352, 353, 39, 37, 278, 359, |
/* 850 */ 12, 25, 331, 331, 331, 331, 331, 331, 211, 331, |
/* 860 */ 331, 331, 331, 10, 360, 361, 358, 357, 354, 355, |
/* 870 */ 356, 342, 341, 328, 329, 330, 331, 331, 331, 331, |
/* 880 */ 331, 331, 331, 9, 142, 212, 331, 331, 5, 108, |
/* 890 */ 331, 246, 331, 331, 126, 157, 183, 331, 259, 123, |
/* 900 */ 256, 331, 250, 331, 23, 283, 331, 52, 277, 331, |
/* 910 */ 331, 255, 350, 348, 331, 345, 331, 279, 180, 178, |
/* 920 */ 331, 331, 49, 50, 296, 240, 351, 283, 283, 106, |
/* 930 */ 1, 274, 331, 147, 331, 331, 331, 331, 331, 279, |
/* 940 */ 279, 9, 144, 92, 96, 233, 5, 108, 331, 345, |
/* 950 */ 331, 331, 126, 331, 331, 246, 259, 323, 256, 146, |
/* 960 */ 250, 331, 23, 123, 184, 52, 331, 331, 331, 331, |
/* 970 */ 246, 331, 343, 283, 153, 255, 350, 348, 123, 345, |
/* 980 */ 49, 50, 296, 240, 351, 279, 331, 106, 1, 331, |
/* 990 */ 255, 350, 348, 331, 345, 33, 331, 280, 331, 9, |
/* 1000 */ 142, 224, 96, 331, 5, 108, 331, 30, 331, 247, |
/* 1010 */ 126, 246, 331, 15, 259, 149, 256, 331, 250, 123, |
/* 1020 */ 23, 331, 331, 52, 331, 331, 331, 331, 331, 331, |
/* 1030 */ 331, 255, 350, 348, 331, 345, 331, 331, 49, 50, |
/* 1040 */ 296, 240, 351, 331, 331, 106, 1, 331, 331, 331, |
/* 1050 */ 331, 331, 33, 331, 280, 331, 331, 9, 135, 224, |
/* 1060 */ 96, 331, 5, 108, 30, 246, 258, 331, 126, 151, |
/* 1070 */ 15, 246, 259, 123, 256, 154, 250, 331, 11, 123, |
/* 1080 */ 331, 52, 331, 331, 331, 255, 350, 348, 331, 345, |
/* 1090 */ 331, 255, 350, 348, 331, 345, 49, 50, 296, 240, |
/* 1100 */ 351, 331, 331, 106, 1, 331, 331, 331, 331, 331, |
/* 1110 */ 331, 331, 331, 331, 331, 9, 142, 210, 96, 331, |
/* 1120 */ 5, 108, 331, 331, 331, 331, 126, 246, 331, 331, |
/* 1130 */ 259, 155, 256, 331, 216, 123, 23, 331, 331, 52, |
/* 1140 */ 331, 331, 331, 331, 331, 331, 331, 255, 350, 348, |
/* 1150 */ 331, 345, 331, 331, 49, 50, 296, 240, 351, 331, |
/* 1160 */ 331, 106, 1, 331, 331, 331, 331, 331, 331, 331, |
/* 1170 */ 331, 331, 331, 9, 131, 224, 96, 331, 5, 108, |
/* 1180 */ 331, 331, 331, 331, 126, 246, 331, 331, 259, 152, |
/* 1190 */ 256, 331, 250, 123, 3, 331, 331, 52, 331, 331, |
/* 1200 */ 331, 331, 331, 331, 331, 255, 350, 348, 331, 345, |
/* 1210 */ 331, 331, 49, 50, 296, 240, 351, 331, 331, 106, |