game/onyx2/modules/templates/smarty/sysplugins/smarty_method_getconfigdir.php

28 lines
343 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?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 getConfigDir($smarty)
{
return $smarty->config_dir;
}
?>