Example #1
0
 public function delete($con = null)
 {
     try {
         $con = Propel::getConnection();
         $con->begin();
         //deletes generic document
         $genericDocument = Document::getGenericDocument($this);
         $genericDocument->delete();
         parent::delete();
         $con->commit();
         Document::deleteObjCache($this);
         return true;
     } catch (Exception $e) {
         $con->rollback();
         throw $e;
     }
 }
Example #2
0
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new SearchMatchPeer();
     }
     return self::$peer;
 }