Files
smarty/libs/sysplugins/smarty_method_getconfigdir.php

28 lines
358 B
PHP
Raw Normal View History

<?php
/**
* Smarty method GetConfigDir
*
* Returns directory of config files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Returns directory of config files
*/
/**
* Returns directory of config files
*
* @return array config folder
*/
function Smarty_Method_GetConfigDir($smarty)
{
return $smarty->config_dir;
}
?>