Files
ventas_php/libs/sysplugins/smarty_method_isdebugging.php

22 lines
236 B
PHP
Executable File

<?php
/**
* Smarty method IsDebugging
*
* is debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is debugging
*/
function Smarty_Method_IsDebugging($smarty)
{
return $smarty->debugging;
}
?>