예제 #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')));
     }
 }