mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-30 20:01:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method IsConfigOverwrite
 | |
| * 
 | |
| * is config overwrite mode
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * is config overwrite mode
 | |
| */
 | |
| function  Smarty_Method_IsConfigOverwrite($smarty)
 | |
| {
 | |
|     return $smarty->config_overwrite;
 | |
| } 
 | |
| 
 | |
| ?>
 |