mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 14:05:21 +02:00
28 lines
357 B
PHP
28 lines
357 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|