mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +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;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |