/**
  * Returns a new UserRoleQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   UserRoleQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return UserRoleQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof UserRoleQuery) {
         return $criteria;
     }
     $query = new UserRoleQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
 /**
  * Edits an existing User entity.
  *
  * @param \Symfony\Component\HttpFoundation\Request $request
  * @param                                           $id
  *
  * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
  */
 public function updateAction(Request $request, $id)
 {
     /** @var User $oUser */
     $oUser = UserQuery::create()->findOneById($id);
     if (count($oUser) === 0) {
         throw $this->createNotFoundException('Unable to find User entity.');
     }
     $deleteForm = $this->createDeleteForm($id);
     $editForm = $this->createEditForm($oUser);
     $editForm->handleRequest($request);
     $aUserRoles = UserRoleQuery::create()->findByUserId($oUser->getId());
     if ($editForm->isValid()) {
         foreach ($aUserRoles as $oUserRole) {
             $oUserRole->setUserId($oUser->getId());
             $oUserRole->delete();
         }
         $aFormData = $request->request->get('slashworks_backendbundle_user');
         $sPassword = $aFormData['password'];
         $sPasswordRepeat = $aFormData['password_repeat'];
         if (!empty($sPassword) && !empty($sPasswordRepeat)) {
             if ($sPassword === $sPasswordRepeat) {
                 $factory = $this->get('security.encoder_factory');
                 $encoder = $factory->getEncoder($oUser);
                 $sPassword = $encoder->encodePassword($sPassword, $oUser->getSalt());
                 $oUser->setPassword($sPassword);
             } else {
             }
         } elseif (!empty($sPassword) && empty($sPasswordReqpeat)) {
         }
         $oUser->save();
         return $this->redirect($this->generateUrl('backend_system_user'));
     }
     return $this->render('SlashworksBackendBundle:User:edit.html.twig', array('entity' => $oUser, 'edit_form' => $editForm->createView(), 'delete_form' => $deleteForm->createView()));
 }
Esempio n. 3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Role is new, it will return
  * an empty collection; or if this Role has previously
  * been saved, it will retrieve related UserRoles from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Role.
  *
  * @param Criteria $criteria optional Criteria object to narrow the query
  * @param PropelPDO $con optional connection object
  * @param string $join_behavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return PropelObjectCollection|UserRole[] List of UserRole objects
  */
 public function getUserRolesJoinUser($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = UserRoleQuery::create(null, $criteria);
     $query->joinWith('User', $join_behavior);
     return $this->getUserRoles($query, $con);
 }
Esempio n. 4
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(UserRolePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = UserRoleQuery::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;
     }
 }