mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			420 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			420 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method enableConfigOverwrite
 | |
| * 
 | |
| * Enable config overwrite mode
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Smarty class enableConfigOverwrite
 | |
| * 
 | |
| * Enable config overwrite mode
 | |
| */
 | |
| class Smarty_Method_enableConfigOverwrite extends Smarty_Internal_Base {
 | |
|     public function execute()
 | |
|     {
 | |
|         $this->smarty->config_overwrite = true;
 | |
|         return;
 | |
|     } 
 | |
| } 
 | |
| 
 | |
| ?>
 |