Files
smarty/libs/sysplugins/smarty_method_getpluginsdir.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

28 lines
347 B
PHP

<?php
/**
* Smarty method GetPluginsDir
*
* Returns directory of plugins
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Returns directory of plugins
*/
/**
* Returns directory of plugins
*
* @return array plugins folder
*/
function Smarty_Method_GetPluginsDir($smarty)
{
return $smarty->plugins_dir;
}
?>