Files
ventas_php/libs/sysplugins/smarty_method_enabledebuggingurlctrl.php

23 lines
380 B
PHP
Executable File

<?php
/**
* Smarty method EnableDebuggingUrlCtrl
*
* Enable possibility to enable debugging by SMARTY_DEBUG attribute
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable possibility to enable debugging by SMARTY_DEBUG attribute
*/
function Smarty_Method_EnableDebuggingUrlCtrl($smarty)
{
$smarty->debugging_ctrl = 'URL';
return;
}
?>