- added all major setter/getter methodes

This commit is contained in:
Uwe.Tews
2009-03-30 17:05:37 +00:00
parent 590029c092
commit c9bbd7e834
16 changed files with 424 additions and 5 deletions

View File

@@ -0,0 +1,31 @@
<?php
/**
* Smarty method getCacheDir
*
* Returns directory of cache files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class getCacheDir
*
* Returns directory of cache files
*/
class Smarty_Method_GetCacheDir extends Smarty_Internal_Base {
/**
* Returns directory of cache files
*
* @return array cache folder
*/
public function execute()
{
return $this->smarty->cache_dir;
}
}
?>