game/onyx2/modules/templates/smarty/sysplugins/smarty_method_isdebuggingurlctrl.php

22 lines
338 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?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 isDebuggingUrlCtrl($smarty)
{
return $smarty->debugging_ctrl != 'none';
}
?>