예제 #1
0
파일: Menu.php 프로젝트: vgrish/dvelum
 public function onAfterUpdate(Db_Object $object)
 {
     if (!$this->_cache) {
         return;
     }
     parent::onAfterUpdate($object);
     $this->clearBlockCache($object);
 }
예제 #2
0
파일: Blocks.php 프로젝트: vgrish/dvelum
 public function onAfterUpdate(Db_Object $object)
 {
     parent::onAfterUpdate($object);
     $this->clearBlockCache($object);
 }
예제 #3
0
파일: Page.php 프로젝트: vgrish/dvelum
 public function onAfterUpdate(Db_Object $object)
 {
     parent::onAfterUpdate($object);
     $this->clearBlockCache($object->getId());
     $this->clearItemCache($object->code, $object->getId());
 }