mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-19 15:35:20 +02:00
28 lines
342 B
PHP
28 lines
342 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 getCacheDir($smarty)
|
|
{
|
|
return $this->smarty->cache_dir;
|
|
}
|
|
|
|
?>
|