Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_setconfigdir.php
1 <?php
3 /**
4 * Smarty method SetConfigDir
5
6 * Sets directory of config files
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Sets directory of config files
15
16 * @param object $smarty 
17 * @param string $ config folder
18 * @return 
19 */
20 function  Smarty_Method_SetConfigDir($smarty, $config_dir)
21 {
22     $this->smarty->config_dir = $config_dir;
23     return;
24
26 ?>