Files
smarty/libs/sysplugins/method.getpluginsdir.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

28 lines
332 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 getPluginsDir($smarty)
{
return $smarty->plugins_dir;
}
?>