/**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      PcActivationToken $value A PcActivationToken object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(PcActivationToken $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getUserId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Example #2
0
 /**
  * Activates a user.
  * N.B.: here we don't check the token is valid. That must be already done 
  * Returns the user that has been activated
  *
  * @param PcActivationToken $token - the email address
  * @return PcUser
  */
 public static function activateUser(PcActivationToken $token)
 {
     $user = self::retrieveByPk($token->getUserId());
     $user->setAwaitingActivation(0);
     $user->save();
     $token->delete();
     return $user;
 }
Example #3
0
 /**
  * Sets a single PcActivationToken object as related to this object by a one-to-one relationship.
  *
  * @param      PcActivationToken $l PcActivationToken
  * @return     PcUser The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setPcActivationToken(PcActivationToken $v)
 {
     $this->singlePcActivationToken = $v;
     // Make sure that that the passed-in PcActivationToken isn't already associated with this object
     if ($v->getPcUser() === null) {
         $v->setPcUser($this);
     }
     return $this;
 }