mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 20:31:41 +01:00 
			
		
		
		
	
		
			
	
	
		
			26 lines
		
	
	
		
			413 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			413 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /** | ||
|  | * Smarty method getVariableFilter | ||
|  | *  | ||
|  | * get status of filter on variable output | ||
|  | *  | ||
|  | * @package Smarty | ||
|  | * @subpackage SmartyMethod | ||
|  | * @author Uwe Tews  | ||
|  | */ | ||
|  | 
 | ||
|  | /** | ||
|  | * Smarty class getVariableFilter | ||
|  | *  | ||
|  | * get status of filter on variable output | ||
|  | */ | ||
|  | class Smarty_Method_getVariableFilter extends Smarty_Internal_Base { | ||
|  |     public function execute() | ||
|  |     { | ||
|  |         return $this->smarty->variable_filter; | ||
|  |     }  | ||
|  | }  | ||
|  | 
 | ||
|  | ?>
 |