Files
smarty/libs/sysplugins/smarty_method_setpluginsdir.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

30 lines
392 B
PHP

<?php
/**
* Smarty method setPluginsDir
*
* Sets directory of plugin files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Sets directory of plugin files
*/
/**
* Sets directory of plugin files
*
* @param string $ plugins folder
* @return
*/
function SetPluginsDir($smarty, $plugins_dir)
{
$smarty->plugins_dir = (array)$plugins_dir;
return;
}
?>