Пример #1
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(HelpPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         EventDispatcherProxy::trigger(array('delete.pre', 'model.delete.pre'), new ModelEvent($this));
         $deleteQuery = HelpQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             // event behavior
             EventDispatcherProxy::trigger(array('delete.post', 'model.delete.post'), new ModelEvent($this));
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
Пример #2
0
 /**
  * @return HelpQuery
  */
 public function getBaseQuery()
 {
     return $this->helpQuery->create();
 }
Пример #3
0
 /**
  * Get the associated Help object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return Help The associated Help object.
  * @throws PropelException
  */
 public function getHelp(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->aHelp === null && $this->id !== null && $doQuery) {
         $this->aHelp = HelpQuery::create()->findPk($this->id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aHelp->addHelpI18ns($this);
            */
     }
     return $this->aHelp;
 }