| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |  * Smarty Internal Plugin CacheResource File | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage Cacher | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @author Uwe Tews | 
					
						
							|  |  |  |  * @author Rodney Rehm | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |  * This class does contain all necessary methods for the HTML cache on file system | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Implements the file system as resource for the HTML cache Version ussing nocache inserts. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage Cacher | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | class Smarty_Internal_CacheResource_File extends Smarty_CacheResource { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * populate Cached Object with meta data from Resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached   $cached    cached object | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @return void | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_source_file_path = str_replace(':', '.', $_template->source->filepath); | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |         $_cache_id = isset($_template->cache_id) ? preg_replace('![^\w\|]+!', '_', $_template->cache_id) : null; | 
					
						
							| 
									
										
										
										
											2010-02-08 21:04:43 +00:00
										 |  |  |         $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_filepath = $_template->source->uid; | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |         // if use_sub_dirs, break file into directories
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         if ($_template->smarty->use_sub_dirs) { | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |             $_filepath = substr($_filepath, 0, 2) . DS | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 . substr($_filepath, 2, 2) . DS | 
					
						
							|  |  |  |                 . substr($_filepath, 4, 2) . DS | 
					
						
							|  |  |  |                 . $_filepath; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |         if (isset($_cache_id)) { | 
					
						
							|  |  |  |             $_cache_id = str_replace('|', $_compile_dir_sep, $_cache_id) . $_compile_dir_sep; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $_cache_id = ''; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |         if (isset($_compile_id)) { | 
					
						
							|  |  |  |             $_compile_id = $_compile_id . $_compile_dir_sep; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $_compile_id = ''; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         $_cache_dir = $_template->smarty->getCacheDir(); | 
					
						
							|  |  |  |         if ($_template->smarty->cache_locking) { | 
					
						
							|  |  |  |             // create locking file name
 | 
					
						
							|  |  |  |             // relative file name?
 | 
					
						
							|  |  |  |             if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_cache_dir)) { | 
					
						
							| 
									
										
										
										
											2011-09-17 16:29:10 +00:00
										 |  |  |                 $_lock_dir = rtrim(getcwd(), '/\\') . DS . $_cache_dir; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 $_lock_dir = $_cache_dir; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $cached->lock_id = $_lock_dir.sha1($_cache_id.$_compile_id.$_template->source->uid).'.lock'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $cached->filepath = $_cache_dir . $_cache_id . $_compile_id . $_filepath . '.' . basename($_source_file_path) . '.php'; | 
					
						
							|  |  |  |         $cached->timestamp = @filemtime($cached->filepath); | 
					
						
							|  |  |  |         $cached->exists = !!$cached->timestamp; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * populate Cached Object with timestamp and exists from Resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							|  |  |  |      * @return void | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function populateTimestamp(Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cached->timestamp = @filemtime($cached->filepath); | 
					
						
							|  |  |  |         $cached->exists = !!$cached->timestamp; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * Read the cached template and process its header | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							|  |  |  |      * @return booelan true or false if the cached content does not exist | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached=null) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-01-05 21:10:25 +00:00
										 |  |  |         $_smarty_tpl = $_template; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return @include $_template->cached->filepath; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * Write the rendered template output to cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param string                   $content   content to cache | 
					
						
							|  |  |  |      * @return boolean success | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function writeCachedContent(Smarty_Internal_Template $_template, $content) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         if (Smarty_Internal_Write_File::writeFile($_template->cached->filepath, $content, $_template->smarty) === true) { | 
					
						
							|  |  |  |             $_template->cached->timestamp = filemtime($_template->cached->filepath); | 
					
						
							|  |  |  |             $_template->cached->exists = !!$_template->cached->timestamp; | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-02 12:15:04 +00:00
										 |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * Empty cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param integer                  $exp_time  expiration time (number of seconds, not timestamp) | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      * @return integer number of cache files deleted | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function clearAll(Smarty $smarty, $exp_time = null) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return $this->clear($smarty, null, null, null, $exp_time); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      * Empty cache for a specific template | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty  $_template     template 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) | 
					
						
							| 
									
										
										
										
											2010-04-27 17:47:24 +00:00
										 |  |  |      * @return integer number of cache files deleted | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     */ | 
					
						
							|  |  |  |     public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-12-27 15:06:49 +00:00
										 |  |  |         $_cache_id = isset($cache_id) ? preg_replace('![^\w\|]+!', '_', $cache_id) : null; | 
					
						
							|  |  |  |         $_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_dir_sep = $smarty->use_sub_dirs ? '/' : '^'; | 
					
						
							|  |  |  |         $_compile_id_offset = $smarty->use_sub_dirs ? 3 : 0; | 
					
						
							|  |  |  |         $_dir = $smarty->getCacheDir(); | 
					
						
							| 
									
										
										
										
											2009-12-27 15:06:49 +00:00
										 |  |  |         $_dir_length = strlen($_dir); | 
					
						
							|  |  |  |         if (isset($_cache_id)) { | 
					
						
							|  |  |  |             $_cache_id_parts = explode('|', $_cache_id); | 
					
						
							|  |  |  |             $_cache_id_parts_count = count($_cache_id_parts); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             if ($smarty->use_sub_dirs) { | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                 foreach ($_cache_id_parts as $id_part) { | 
					
						
							|  |  |  |                     $_dir .= $id_part . DS; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-08 21:04:43 +00:00
										 |  |  |         if (isset($resource_name)) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             $_save_stat = $smarty->caching; | 
					
						
							|  |  |  |             $smarty->caching = true; | 
					
						
							|  |  |  |             $tpl = new $smarty->template_class($resource_name, $smarty); | 
					
						
							|  |  |  |             $smarty->caching = $_save_stat; | 
					
						
							|  |  |  |             if ($tpl->source->exists) { | 
					
						
							|  |  |  |                 $_resourcename_parts = basename(str_replace('^', '/', $tpl->cached->filepath)); | 
					
						
							|  |  |  |                 // remove from template cache
 | 
					
						
							| 
									
										
										
										
											2011-10-03 19:02:44 +00:00
										 |  |  |                 unset($smarty->template_objects[sha1($smarty->joined_template_dir.$tpl->template_resource . $tpl->cache_id . $tpl->compile_id)]); | 
					
						
							| 
									
										
										
										
											2010-02-08 21:04:43 +00:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 // remove from template cache
 | 
					
						
							| 
									
										
										
										
											2011-10-03 19:02:44 +00:00
										 |  |  |                 unset($smarty->template_objects[sha1($smarty->joined_template_dir.$tpl->template_resource . $tpl->cache_id . $tpl->compile_id)]); | 
					
						
							| 
									
										
										
										
											2010-02-08 21:04:43 +00:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $_count = 0; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_time = time(); | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |         if (file_exists($_dir)) { | 
					
						
							|  |  |  |             $_cacheDirs = new RecursiveDirectoryIterator($_dir); | 
					
						
							|  |  |  |             $_cache = new RecursiveIteratorIterator($_cacheDirs, RecursiveIteratorIterator::CHILD_FIRST); | 
					
						
							|  |  |  |             foreach ($_cache as $_file) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 if (substr($_file->getBasename(),0,1) == '.' || strpos($_file, '.svn') !== false) continue; | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                 // directory ?
 | 
					
						
							|  |  |  |                 if ($_file->isDir()) { | 
					
						
							|  |  |  |                     if (!$_cache->isDot()) { | 
					
						
							|  |  |  |                         // delete folder if empty
 | 
					
						
							|  |  |  |                         @rmdir($_file->getPathname()); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                 } else { | 
					
						
							|  |  |  |                     $_parts = explode($_dir_sep, str_replace('\\', '/', substr((string)$_file, $_dir_length))); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                     $_parts_count = count($_parts); | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                     // check name
 | 
					
						
							|  |  |  |                     if (isset($resource_name)) { | 
					
						
							|  |  |  |                         if ($_parts[$_parts_count-1] != $_resourcename_parts) { | 
					
						
							|  |  |  |                             continue; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                     // check compile id
 | 
					
						
							|  |  |  |                     if (isset($_compile_id) && (!isset($_parts[$_parts_count-2 - $_compile_id_offset]) || $_parts[$_parts_count-2 - $_compile_id_offset] != $_compile_id)) { | 
					
						
							| 
									
										
										
										
											2009-12-27 15:06:49 +00:00
										 |  |  |                         continue; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                     // check cache id
 | 
					
						
							|  |  |  |                     if (isset($_cache_id)) { | 
					
						
							|  |  |  |                         // count of cache id parts
 | 
					
						
							|  |  |  |                         $_parts_count = (isset($_compile_id)) ? $_parts_count - 2 - $_compile_id_offset : $_parts_count - 1 - $_compile_id_offset; | 
					
						
							|  |  |  |                         if ($_parts_count < $_cache_id_parts_count) { | 
					
						
							|  |  |  |                             continue; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                         for ($i = 0; $i < $_cache_id_parts_count; $i++) { | 
					
						
							|  |  |  |                             if ($_parts[$i] != $_cache_id_parts[$i]) continue 2; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                     // expired ?
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                     if (isset($exp_time) && $_time - @filemtime($_file) < $exp_time) { | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                         continue; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-06-21 20:10:22 +00:00
										 |  |  |                     $_count += @unlink((string) $_file) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         return $_count; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Check is cache is locked for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty $smarty Smarty object | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							|  |  |  |      * @return booelan true or false if cache is locked | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (version_compare(PHP_VERSION, '5.3.0', '>=')) { | 
					
						
							|  |  |  |             clearstatcache(true, $cached->lock_id); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             clearstatcache(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $t = @filemtime($cached->lock_id); | 
					
						
							|  |  |  |         return $t && (time() - $t < $smarty->locking_timeout); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Lock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty $smarty Smarty object | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cached->is_locked = true; | 
					
						
							|  |  |  |         touch($cached->lock_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Unlock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty $smarty Smarty object | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached cached object | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cached->is_locked = false; | 
					
						
							|  |  |  |         @unlink($cached->lock_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-17 17:37:32 +00:00
										 |  |  | ?>
 |