1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- function smarty_function_debug($params, &$smarty)
- {
- if (isset($params['output'])) {
- $smarty->assign('_smarty_debug_output', $params['output']);
- }
- require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
- return smarty_core_display_debug_console(null, $smarty);
- }
- ?>
|