Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_setpluginsdir.php
1 <?php
3 /**
4 * Smarty method SetPluginsDir
5
6 * Sets directory of plugin files
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Sets directory of plugin files
15 */
17 /**
18 * Sets directory of plugin files
19
20 * @param string $ plugins folder
21 * @return 
22 */
23 function  Smarty_Method_SetPluginsDir($smarty, $plugins_dir)
24 {
25     $smarty->plugins_dir = (array)$plugins_dir;
26     return;
27
29 ?>