Files
smarty/libs/sysplugins/smarty_method_isdebuggingurlctrl.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

22 lines
353 B
PHP

<?php
/**
* Smarty method IsDebuggingUrlCtrl
*
* is possibility to is debugging by SMARTY_DEBUG attribute
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is possibility to is debugging by SMARTY_DEBUG attribute
*/
function Smarty_Method_IsDebuggingUrlCtrl($smarty)
{
return $smarty->debugging_ctrl != 'none';
}
?>