public function delete($con = null) { foreach (sfMixer::getCallables('BasesfTicket:delete:pre') as $callable) { $ret = call_user_func($callable, $this, $con); if ($ret) { return; } } if ($this->isDeleted()) { throw new PropelException("This object has already been deleted."); } if ($con === null) { $con = Propel::getConnection(sfTicketPeer::DATABASE_NAME); } try { $con->begin(); sfTicketPeer::doDelete($this, $con); $this->setDeleted(true); $con->commit(); } catch (PropelException $e) { $con->rollback(); throw $e; } foreach (sfMixer::getCallables('BasesfTicket:delete:post') as $callable) { call_user_func($callable, $this, $con); } }