mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-30 03:41:36 +01: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;
 | |
|     } 
 | |
| } 
 | |
| 
 | |
| ?>
 |