示例#1
0
文件: Page.php 项目: vgrish/dvelum
 public function clearBlockCache($pageId)
 {
     if ($this->_cache) {
         $bm = new Blockmanager();
         $this->_cache->remove($bm->hashPage($pageId));
         $this->_cache->remove(Model::factory('Page')->getCacheKey(array('codes')));
     }
 }