XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
function.debug.php
Go to the documentation of this file.
1 <?php
24 function smarty_function_debug($params, &$smarty)
25 {
26  if (isset($params['output'])) {
27  $smarty->assign('_smarty_debug_output', $params['output']);
28  }
29  require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
30  return smarty_core_display_debug_console(null, $smarty);
31 }
32 
33 /* vim: set expandtab: */
34 
35 ?>