2009-03-30 17:05:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Smarty method addPluginsDir
|
|
|
|
*
|
|
|
|
* Adds directory of plugin files
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds directory of plugin files
|
2009-08-08 17:28:23 +00:00
|
|
|
*
|
|
|
|
* @param object $smarty
|
|
|
|
* @param string $ |array $ plugins folder
|
|
|
|
* @return
|
2009-03-30 17:05:37 +00:00
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_AddPluginsDir($smarty, $plugins_dir)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
$smarty->plugins_dir = array_merge((array)$smarty->plugins_dir, (array)$plugins_dir);
|
|
|
|
$smarty->plugins_dir = array_unique($smarty->plugins_dir);
|
|
|
|
return;
|
2009-03-30 17:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|