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