| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty Method ClearAllCache | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Smarty::clearAllCache() method | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package    Smarty | 
					
						
							|  |  |  |  * @subpackage PluginsInternal | 
					
						
							|  |  |  |  * @author     Uwe Tews | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class Smarty_Internal_Method_ClearAllCache | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Valid for Smarty object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var int | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $objMap = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Empty cache folder | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @api  Smarty::clearAllCache() | 
					
						
							|  |  |  |      * @link http://www.smarty.net/docs/en/api.clear.all.cache.tpl | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |      * @param \Smarty $smarty | 
					
						
							|  |  |  |      * @param integer $exp_time expiration time | 
					
						
							|  |  |  |      * @param string  $type     resource type | 
					
						
							| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2017-10-26 10:25:41 +02:00
										 |  |  |      * @return int number of cache files deleted | 
					
						
							|  |  |  |      * @throws \SmartyException | 
					
						
							| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function clearAllCache(Smarty $smarty, $exp_time = null, $type = null) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-12-27 03:28:26 +01:00
										 |  |  |         $smarty->_clearTemplateCache(); | 
					
						
							| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  |         // load cache resource and call clearAll
 | 
					
						
							|  |  |  |         $_cache_resource = Smarty_CacheResource::load($smarty, $type); | 
					
						
							|  |  |  |         return $_cache_resource->clearAll($smarty, $exp_time); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  | } |