Code

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