mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			384 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			384 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method SetConfigDir
 | |
| * 
 | |
| * Sets directory of config files
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Sets directory of config files
 | |
| * 
 | |
| * @param object $smarty 
 | |
| * @param string $ config folder
 | |
| * @return 
 | |
| */
 | |
| function  Smarty_Method_SetConfigDir($smarty, $config_dir)
 | |
| {
 | |
|     $this->smarty->config_dir = $config_dir;
 | |
|     return;
 | |
| } 
 | |
| 
 | |
| ?>
 |