mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-19 07:25:20 +02:00
28 lines
332 B
PHP
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;
|
|
}
|
|
|
|
?>
|