mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
		
			431 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			431 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /** | ||
|  | * Smarty method disableVariableFilter | ||
|  | *  | ||
|  | * Disable  filter on variable output | ||
|  | *  | ||
|  | * @package Smarty | ||
|  | * @subpackage SmartyMethod | ||
|  | * @author Uwe Tews  | ||
|  | */ | ||
|  | 
 | ||
|  | /** | ||
|  | * Smarty class disableVariableFilter | ||
|  | *  | ||
|  | * Disable filter on variable output | ||
|  | */ | ||
|  | class Smarty_Method_disableVariableFilter extends Smarty_Internal_Base { | ||
|  |     public function execute() | ||
|  |     { | ||
|  |         $this->smarty->variable_filter = false; | ||
|  |         return; | ||
|  |     }  | ||
|  | }  | ||
|  | 
 | ||
|  | ?>
 |