예제 #1
0
 public function updateEmail($email)
 {
     $query = UcUsersQuery::create()->findById($this->user_id);
     $user = $query[0];
     $user->setEmail($email);
     $user->save();
 }
예제 #2
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(UcUsersPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = UcUsersQuery::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;
     }
 }
예제 #3
0
 /**
  * Returns a new UcUsersQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   UcUsersQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return UcUsersQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof UcUsersQuery) {
         return $criteria;
     }
     $query = new UcUsersQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
예제 #4
0
파일: funcs.php 프로젝트: AdwayLele/CupCake
function validateActivationToken($token, $lostpass = NULL)
{
    if ($lostpass == NULL) {
        $query = UcUsersQuery::create()->filterByActivationToken($token)->filterByActive(0)->limit(1)->find();
    } else {
        $query = UcUsersQuery::create()->filterByActivationToken($token)->filterByActive(1)->filterByLostPasswordRequest(1)->limit(1)->find();
    }
    return count($query) > 0;
}