Exemplo n.º 1
0
 /**
  * Returns a new ProfileQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return    ProfileQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof ProfileQuery) {
         return $criteria;
     }
     $query = new ProfileQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Exemplo n.º 2
0
 public static function getProfile()
 {
     if (isset($_SESSION['user']) && $_SESSION['user'] != '' && ($profile = ProfileQuery::create()->findOneByUserID(App::getUserId()))) {
         return $profile;
     }
     return null;
 }
Exemplo n.º 3
0
 /**
  * Returns the number of related Profile objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Profile objects.
  * @throws     PropelException
  */
 public function countProfiles(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if (null === $this->collProfiles || null !== $criteria) {
         if ($this->isNew() && null === $this->collProfiles) {
             return 0;
         } else {
             $query = ProfileQuery::create(null, $criteria);
             if ($distinct) {
                 $query->distinct();
             }
             return $query->filterBysfGuardUser($this)->count($con);
         }
     } else {
         return count($this->collProfiles);
     }
 }
Exemplo n.º 4
0
 /**
  * @static
  * @param string $email
  * @return Profile
  */
 public static function getProfileByEmail($email)
 {
     return ProfileQuery::create()->filterByEmail($email)->findOne();
 }
Exemplo n.º 5
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      PropelPDO $con
  * @return     void
  * @throws     PropelException
  * @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(ProfilePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ProfileQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         // symfony_behaviors behavior
         foreach (sfMixer::getCallables('BaseProfile:delete:pre') as $callable) {
             if (call_user_func($callable, $this, $con)) {
                 $con->commit();
                 return;
             }
         }
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             // symfony_behaviors behavior
             foreach (sfMixer::getCallables('BaseProfile:delete:post') as $callable) {
                 call_user_func($callable, $this, $con);
             }
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }