コード例 #1
0
ファイル: Posts.php プロジェクト: dioscouri/f3-blog
 /**
  * enables trash
  */
 protected function beforeDelete()
 {
     if (!empty($this->__enable_trash)) {
         \Dsc\Mongo\Collections\Trash::trash($this);
     }
     parent::beforeDelete();
 }