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

28 lines
342 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method getCacheDir
*
* Returns directory of cache files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Returns directory of cache files
*/
/**
* Returns directory of cache files
*
* @return array cache folder
*/
function getCacheDir($smarty)
{
return $this->smarty->cache_dir;
}
?>