mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-04 16:20:55 +02:00
25 lines
534 B
PHP
25 lines
534 B
PHP
<?php
|
|
|
|
/*
|
|
* Smarty plugin
|
|
* -------------------------------------------------------------
|
|
* Type: function
|
|
* Name: debug
|
|
* Version: 1.0
|
|
* Date: July 1, 2002
|
|
* Author: Monte Ohrt <monte@ispi.net>
|
|
* Purpose: popup debug window
|
|
* -------------------------------------------------------------
|
|
*/
|
|
function smarty_function_debug($params, &$smarty)
|
|
{
|
|
if($params['output']) {
|
|
$smarty->assign('_smarty_debug_output',$params['output']);
|
|
}
|
|
return $smarty->_generate_debug_output();
|
|
}
|
|
|
|
/* vim: set expandtab: */
|
|
|
|
?>
|