Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_getconfigdir.php
1 <?php
3 /**
4 * Smarty method GetConfigDir
5
6 * Returns directory of config files
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Returns directory of config files
15 */
17 /**
18 * Returns directory of config files
19
20 * @return array config folder
21 */
22 function  Smarty_Method_GetConfigDir($smarty)
23 {
24     return $smarty->config_dir;
25
27 ?>