예제 #1
0
 /**
  * Returns the number of related RemoteHistoryContao objects.
  *
  * @param Criteria $criteria
  * @param boolean $distinct
  * @param PropelPDO $con
  * @return int             Count of related RemoteHistoryContao objects.
  * @throws PropelException
  */
 public function countRemoteHistoryContaos(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     $partial = $this->collRemoteHistoryContaosPartial && !$this->isNew();
     if (null === $this->collRemoteHistoryContaos || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collRemoteHistoryContaos) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getRemoteHistoryContaos());
         }
         $query = RemoteHistoryContaoQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByRemoteApp($this)->count($con);
     }
     return count($this->collRemoteHistoryContaos);
 }
 /**
  * Returns a new RemoteHistoryContaoQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   RemoteHistoryContaoQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return RemoteHistoryContaoQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof RemoteHistoryContaoQuery) {
         return $criteria;
     }
     $query = new RemoteHistoryContaoQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
 /**
  * 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(RemoteHistoryContaoPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = RemoteHistoryContaoQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
 /**
  * Delete remote app
  *
  * @param \Symfony\Component\HttpFoundation\Request $request
  * @param                                           $id
  *
  * @return \Symfony\Component\HttpFoundation\RedirectResponse
  * @throws \Exception
  * @throws \PropelException
  */
 public function deleteAction(Request $request, $id)
 {
     /** @var RemoteApp $oRemoteApp */
     $oRemoteApp = RemoteAppQuery::create()->findOneById($id);
     if ($oRemoteApp === null) {
         throw $this->createNotFoundException('Unable to find RemoteApp entity.');
     }
     // get history-entries for remoteapp to delete
     $aHistories = RemoteHistoryContaoQuery::create()->findByRemoteAppId($oRemoteApp->getId());
     foreach ($aHistories as $oHistory) {
         $oHistory->delete();
     }
     $oRemoteApp->delete();
     return $this->redirect($this->generateUrl('remote_app'));
 }