mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 20:31:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			353 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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';
 | |
| } 
 | |
| 
 | |
| ?>
 |