예제 #1
0
파일: Commit.php 프로젝트: burbuja/indefero
 function preDelete()
 {
     IDF_Timeline::remove($this);
     IDF_Search::remove($this);
     IDF_Gconf::dropForModel($this);
 }
예제 #2
0
파일: Comment.php 프로젝트: Br3nda/indefero
 function preDelete()
 {
     IDF_Timeline::remove($this);
 }
예제 #3
0
파일: Upload.php 프로젝트: burbuja/indefero
 /**
  * We drop the information from the timeline.
  */
 function preDelete()
 {
     IDF_Timeline::remove($this);
     @unlink(Pluf::f('upload_path') . '/' . $this->project->shortname . '/files/' . $this->file);
 }