mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			349 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			349 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
 | |
| */
 | |
| public function getCacheDir($smarty)
 | |
| {
 | |
|     return $this->smarty->cache_dir;
 | |
| } 
 | |
| 
 | |
| ?>
 |