Files
smarty/libs/sysplugins/smarty_method_getpluginsdir.php
T

28 lines
347 B
PHP
Raw Normal View History

2009-03-30 17:05:37 +00:00
<?php
/**
* Smarty method GetPluginsDir
2009-03-30 17:05:37 +00:00
*
* 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;
2009-03-30 17:05:37 +00:00
}
?>