Пример #1
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this State is new, it will return
  * an empty collection; or if this State has previously
  * been saved, it will retrieve related UserProfiles 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 State.
  *
  * @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|UserProfile[] List of UserProfile objects
  */
 public function getUserProfilesJoinUser($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = UserProfileQuery::create(null, $criteria);
     $query->joinWith('User', $join_behavior);
     return $this->getUserProfiles($query, $con);
 }
Пример #2
0
 /**
  * @param int $id
  *
  * @return User
  */
 public function findOneById($id)
 {
     return $this->userProfileQuery->create()->findOneById($id);
 }
Пример #3
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(UserProfilePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         EventDispatcherProxy::trigger(array('delete.pre', 'model.delete.pre'), new ModelEvent($this));
         $deleteQuery = UserProfileQuery::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;
     }
 }
Пример #4
0
 /**
  * Gets a single UserProfile object, which is related to this object by a one-to-one relationship.
  *
  * @param PropelPDO $con optional connection object
  * @return UserProfile
  * @throws PropelException
  */
 public function getUserProfile(PropelPDO $con = null)
 {
     if ($this->singleUserProfile === null && !$this->isNew()) {
         $this->singleUserProfile = UserProfileQuery::create()->findPk($this->getPrimaryKey(), $con);
     }
     return $this->singleUserProfile;
 }