10 * Smarty {debug} function plugin
14 * Date: July 1, 2002<br>
15 * Purpose: popup debug window
16 * @link http://smarty.php.net/manual/en/language.function.debug.php {debug}
17 * (Smarty online manual)
18 * @author Monte Ohrt <monte at ohrt dot com>
22 * @return string output from {@link Smarty::_generate_debug_output()}
24 function smarty_function_debug($params, &$smarty)
26 if (isset($params['output'])) {
27 $smarty->assign('_smarty_debug_output', $params['output']);
29 require_once(SMARTY_CORE_DIR
. 'core.display_debug_console.php');
30 return smarty_core_display_debug_console(null, $smarty);
33 /* vim: set expandtab: */
This page took 0.441722 seconds and 4 git commands to generate.