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

28 lines
331 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method getTemplateDir
*
* Returns template directory
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Returns template directory
*/
/**
* Returns template directory
*
* @return array template folders
*/
function getTemplateDir($smarty)
{
return $smarty->template_dir;
}
?>