mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 22:15:21 +02:00
27 lines
494 B
PHP
27 lines
494 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method enableDebuggingUrlCtrl
|
|
*
|
|
* Enable possibility to enable debugging by SMARTY_DEBUG attribute
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class enableDebuggingUrlCtrl
|
|
*
|
|
* Enable possibility to enable debugging by SMARTY_DEBUG attribute
|
|
*/
|
|
class Smarty_Method_EnableDebuggingUrlCtrl extends Smarty_Internal_Base {
|
|
public function execute()
|
|
{
|
|
$this->smarty->debugging_ctrl = 'URL';
|
|
return;
|
|
}
|
|
}
|
|
|
|
?>
|