- changed execution order. A variable filter does now run before modifiers on output of variables

- bugfix use always { and } as delimiter for debug.tpl
This commit is contained in:
Uwe.Tews
2010-07-23 12:53:04 +00:00
parent f319a15cfc
commit 6ae00435af
5 changed files with 1379 additions and 1374 deletions
+33 -28
View File
@@ -1,24 +1,24 @@
<?php
/**
* Smarty Internal Plugin Debug
*
* Class to collect data for the Smarty Debugging Consol
*
* @package Smarty
* @subpackage Debug
* @author Uwe Tews
*/
* Smarty Internal Plugin Debug
*
* Class to collect data for the Smarty Debugging Consol
*
* @package Smarty
* @subpackage Debug
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Debug Class
*/
* Smarty Internal Plugin Debug Class
*/
class Smarty_Internal_Debug extends Smarty_Internal_Data {
// template data
static $template_data = array();
/**
* Start logging of compile time
*/
* Start logging of compile time
*/
public static function start_compile($template)
{
$key = self::get_key($template);
@@ -26,8 +26,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
}
/**
* End logging of compile time
*/
* End logging of compile time
*/
public static function end_compile($template)
{
$key = self::get_key($template);
@@ -35,8 +35,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
}
/**
* Start logging of render time
*/
* Start logging of render time
*/
public static function start_render($template)
{
$key = self::get_key($template);
@@ -44,8 +44,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
}
/**
* End logging of compile time
*/
* End logging of compile time
*/
public static function end_render($template)
{
$key = self::get_key($template);
@@ -53,8 +53,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
}
/**
* Start logging of cache time
*/
* Start logging of cache time
*/
public static function start_cache($template)
{
$key = self::get_key($template);
@@ -62,16 +62,16 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
}
/**
* End logging of cache time
*/
* End logging of cache time
*/
public static function end_cache($template)
{
$key = self::get_key($template);
self::$template_data[$key]['cache_time'] += microtime(true) - self::$template_data[$key]['start_time'];
}
/**
* Opens a window for the Smarty Debugging Consol and display the data
*/
* Opens a window for the Smarty Debugging Consol and display the data
*/
public static function display_debug($smarty)
{
// prepare information of assigned variables
@@ -79,6 +79,10 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
ksort($_assigned_vars);
$_config_vars = $smarty->config_vars;
ksort($_config_vars);
$ldelim = $smarty->left_delimiter;
$rdelim = $smarty->right_delimiter;
$smarty->left_delimiter = '{';
$smarty->right_delimiter = '}';
$_template = new Smarty_Template ($smarty->debug_tpl, $smarty);
$_template->caching = false;
$_template->force_compile = false;
@@ -90,13 +94,15 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
$_template->assign('config_vars', $_config_vars);
$_template->assign('execution_time', microtime(true) - $smarty->start_time);
echo $smarty->fetch($_template);
$smarty->left_delimiter = $ldelim;
$smarty->right_delimiter = $rdelim;
}
/**
* get_key
*/
* get_key
*/
static function get_key($template)
{
{
// calculate Uid if not already done
if ($template->templateUid == '') {
$template->getTemplateFilepath();
@@ -112,7 +118,6 @@ class Smarty_Internal_Debug extends Smarty_Internal_Data {
return $key;
}
}
}
?>