| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty Internal Plugin | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @subpackage Cacher | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Cache Handler API | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @subpackage Cacher | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @author     Rodney Rehm | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | abstract class Smarty_CacheResource_Custom extends Smarty_CacheResource | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * fetch cached content and its modification time from data source | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  string  $id         unique cache content identifier | 
					
						
							|  |  |  |      * @param  string  $name       template name | 
					
						
							|  |  |  |      * @param  string  $cache_id   cache id | 
					
						
							|  |  |  |      * @param  string  $compile_id compile id | 
					
						
							|  |  |  |      * @param  string  $content    cached content | 
					
						
							|  |  |  |      * @param  integer $mtime      cache modification timestamp (epoch) | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract protected function fetch($id, $name, $cache_id, $compile_id, &$content, &$mtime); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Fetch cached content's modification timestamp from data source | 
					
						
							|  |  |  |      * {@internal implementing this method is optional. | 
					
						
							|  |  |  |      *  Only implement it if modification times can be accessed faster than loading the complete cached content.}} | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * @param  string $id         unique cache content identifier | 
					
						
							|  |  |  |      * @param  string $name       template name | 
					
						
							|  |  |  |      * @param  string $cache_id   cache id | 
					
						
							|  |  |  |      * @param  string $compile_id compile id | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return integer|boolean timestamp (epoch) the template was modified, or false if not found | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function fetchTimestamp($id, $name, $cache_id, $compile_id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Save content to cache | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  string       $id         unique cache content identifier | 
					
						
							|  |  |  |      * @param  string       $name       template name | 
					
						
							|  |  |  |      * @param  string       $cache_id   cache id | 
					
						
							|  |  |  |      * @param  string       $compile_id compile id | 
					
						
							|  |  |  |      * @param  integer|null $exp_time   seconds till expiration or null | 
					
						
							|  |  |  |      * @param  string       $content    content to cache | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @return boolean      success | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract protected function save($id, $name, $cache_id, $compile_id, $exp_time, $content); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Delete content from cache | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  string       $name       template name | 
					
						
							|  |  |  |      * @param  string       $cache_id   cache id | 
					
						
							|  |  |  |      * @param  string       $compile_id compile id | 
					
						
							|  |  |  |      * @param  integer|null $exp_time   seconds till expiration time in seconds or null | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @return integer      number of deleted caches | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract protected function delete($name, $cache_id, $compile_id, $exp_time); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * populate Cached Object with meta data from Resource | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty_Template_Cached   $cached    cached object | 
					
						
							|  |  |  |      * @param  Smarty_Internal_Template $_template template object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $_cache_id = isset($cached->cache_id) ? preg_replace('![^\w\|]+!', '_', $cached->cache_id) : null; | 
					
						
							| 
									
										
										
										
											2015-08-06 21:42:20 +02:00
										 |  |  |         $_compile_id = isset($cached->compile_id) ? preg_replace('![^\w]+!', '_', $cached->compile_id) : null; | 
					
						
							| 
									
										
										
										
											2015-12-24 02:26:31 +01:00
										 |  |  |         $path = $cached->source->uid . $_cache_id . $_compile_id; | 
					
						
							| 
									
										
										
										
											2015-05-08 07:27:45 +02:00
										 |  |  |         $cached->filepath = sha1($path); | 
					
						
							|  |  |  |         if ($_template->smarty->cache_locking) { | 
					
						
							|  |  |  |             $cached->lock_id = sha1('lock.' . $path); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $this->populateTimestamp($cached); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * populate Cached Object with timestamp and exists from Resource | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function populateTimestamp(Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $mtime = $this->fetchTimestamp($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id); | 
					
						
							|  |  |  |         if ($mtime !== null) { | 
					
						
							|  |  |  |             $cached->timestamp = $mtime; | 
					
						
							|  |  |  |             $cached->exists = !!$cached->timestamp; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $timestamp = null; | 
					
						
							|  |  |  |         $this->fetch($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id, $cached->content, $timestamp); | 
					
						
							|  |  |  |         $cached->timestamp = isset($timestamp) ? $timestamp : false; | 
					
						
							|  |  |  |         $cached->exists = !!$cached->timestamp; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Read the cached template and process the header | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param  Smarty_Template_Cached   $cached    cached object | 
					
						
							| 
									
										
										
										
											2015-08-03 05:40:34 +02:00
										 |  |  |      * @param bool                      $update    flag if called because cache update | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean                 true or false if the cached content does not exist | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-07-26 18:04:40 +02:00
										 |  |  |     public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached = null, $update = false) | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$cached) { | 
					
						
							|  |  |  |             $cached = $_template->cached; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $content = $cached->content ? $cached->content : null; | 
					
						
							|  |  |  |         $timestamp = $cached->timestamp ? $cached->timestamp : null; | 
					
						
							|  |  |  |         if ($content === null || !$timestamp) { | 
					
						
							| 
									
										
										
										
											2015-08-03 05:40:34 +02:00
										 |  |  |             $this->fetch($_template->cached->filepath, $_template->source->name, $_template->cache_id, $_template->compile_id, $content, $timestamp); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (isset($content)) { | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |             /** @var Smarty_Internal_Template $_smarty_tpl | 
					
						
							|  |  |  |              * used in evaluated code | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             $_smarty_tpl = $_template; | 
					
						
							|  |  |  |             eval("?>" . $content); | 
					
						
							| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  |             $cached->content = null; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Write the rendered template output to cache | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param  string                   $content   content to cache | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @return boolean                  success | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function writeCachedContent(Smarty_Internal_Template $_template, $content) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-08-09 20:48:33 +02:00
										 |  |  |         return $this->save($_template->cached->filepath, $_template->source->name, $_template->cache_id, $_template->compile_id, $_template->cache_lifetime, $content); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 10:20:06 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Read cached template from cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param  Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string  content | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function readCachedContent(Smarty_Internal_Template $_template) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $content = $_template->cached->content ? $_template->cached->content : null; | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         $timestamp = null; | 
					
						
							| 
									
										
										
										
											2014-11-09 10:20:06 +01:00
										 |  |  |         if ($content === null) { | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |             $timestamp = null; | 
					
						
							| 
									
										
										
										
											2015-08-03 05:40:34 +02:00
										 |  |  |             $this->fetch($_template->cached->filepath, $_template->source->name, $_template->cache_id, $_template->compile_id, $content, $timestamp); | 
					
						
							| 
									
										
										
										
											2014-11-09 10:20:06 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (isset($content)) { | 
					
						
							|  |  |  |             return $content; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Empty cache | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty  $smarty   Smarty object | 
					
						
							|  |  |  |      * @param  integer $exp_time expiration time (number of seconds, not timestamp) | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return integer number of cache files deleted | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     public function clearAll(Smarty $smarty, $exp_time = null) | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-08-17 21:52:32 +02:00
										 |  |  |         return $this->delete(null, null, null, $exp_time); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Empty cache for a specific template | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty  $smarty        Smarty object | 
					
						
							|  |  |  |      * @param  string  $resource_name template name | 
					
						
							|  |  |  |      * @param  string  $cache_id      cache id | 
					
						
							|  |  |  |      * @param  string  $compile_id    compile id | 
					
						
							|  |  |  |      * @param  integer $exp_time      expiration time (number of seconds, not timestamp) | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return integer number of cache files deleted | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-01-08 21:05:58 +00:00
										 |  |  |         $cache_name = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (isset($resource_name)) { | 
					
						
							| 
									
										
										
										
											2015-08-23 05:27:16 +02:00
										 |  |  |             $source = Smarty_Template_Source::load(null, $smarty, $resource_name); | 
					
						
							|  |  |  |             if ($source->exists) { | 
					
						
							|  |  |  |                 $cache_name = $source->name; | 
					
						
							| 
									
										
										
										
											2014-01-08 21:05:58 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-08 21:05:58 +00:00
										 |  |  |         return $this->delete($cache_name, $cache_id, $compile_id, $exp_time); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-01-20 14:47:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Check is cache is locked for this template | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  Smarty                 $smarty Smarty object | 
					
						
							|  |  |  |      * @param  Smarty_Template_Cached $cached cached object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean               true or false if cache is locked | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         $id = $cached->lock_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |         $name = $cached->source->name . '.lock'; | 
					
						
							| 
									
										
										
										
											2012-01-20 14:47:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         $mtime = $this->fetchTimestamp($id, $name, $cached->cache_id, $cached->compile_id); | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |         if ($mtime === null) { | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |             $this->fetch($id, $name, $cached->cache_id, $cached->compile_id, $content, $mtime); | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         return $mtime && ($t = time()) - $mtime < $smarty->locking_timeout; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Lock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param Smarty                 $smarty Smarty object | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool|void | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cached->is_locked = true; | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         $id = $cached->lock_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |         $name = $cached->source->name . '.lock'; | 
					
						
							| 
									
										
										
										
											2015-05-08 07:27:45 +02:00
										 |  |  |         $this->save($id, $name, $cached->cache_id, $cached->compile_id, $smarty->locking_timeout, ''); | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Unlock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param Smarty                 $smarty Smarty object | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool|void | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cached->is_locked = false; | 
					
						
							|  |  |  |         $name = $cached->source->name . '.lock'; | 
					
						
							| 
									
										
										
										
											2015-05-10 12:00:19 +02:00
										 |  |  |         $this->delete($name, $cached->cache_id, $cached->compile_id, null); | 
					
						
							| 
									
										
										
										
											2011-10-14 16:17:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | } |