Source for file function.assign_debug_info.php
Documentation is available at function.assign_debug_info.php
* Smarty {assign_debug_info} function plugin
* Name: assign_debug_info<br>
* Purpose: assign debug info to the template<br>
* @param array unused in this plugin, this plugin uses {@link Smarty::$_config},
* {@link Smarty::$_tpl_vars} and {@link Smarty::$_smarty_debug_info}
$assigned_vars = $smarty->_tpl_vars;
$config_vars = $smarty->_config [0 ];
$smarty->assign ("_debug_config_keys", array_keys($config_vars));
$smarty->assign ("_debug_config_vals", array_values($config_vars));
$included_templates = $smarty->_smarty_debug_info;
$smarty->assign ("_debug_keys", array_keys($assigned_vars));
$smarty->assign ("_debug_vals", array_values($assigned_vars));
$smarty->assign ("_debug_tpls", $included_templates);
/* vim: set expandtab: */
Documentation generated on Mon, 25 Jun 2007 14:02:22 -0400 by phpDocumentor 1.3.2. PEAR Logo Copyright © PHP Group 2004.
|