Ejemplo n.º 1
0
 function del($updateItemPhotos = true)
 {
     $this->deletePhotoFiles();
     parent::del();
     if ($updateItemPhotos && $this->itemId) {
         Model::factoryInstance("site")->findByPk($this->itemId)->updatePhotos();
     }
 }
Ejemplo n.º 2
0
 public function del()
 {
     parent::del();
     $cache = Cacher::getInstance();
     $cache->clean("tag", array("searchTag"));
 }