mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			329 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			329 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
 | |
| */
 | |
| function getVariableFilter($smarty)
 | |
| {
 | |
|     return $smarty->variable_filter;
 | |
| } 
 | |
| 
 | |
| ?>
 |