Files
smarty/libs/sysplugins/smarty_method_getcachedir.php

28 lines
357 B
PHP
Raw Normal View History

<?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 Smarty_Method_GetCacheDir($smarty)
{
return $this->smarty->cache_dir;
}
?>