Exemplo n.º 1
0
 /**
  * Sets a single UserTutor object as related to this object by a one-to-one relationship.
  *
  * @param      UserTutor $l UserTutor
  * @return     User The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setUserTutor(UserTutor $v)
 {
     $this->singleUserTutor = $v;
     // Make sure that that the passed-in UserTutor isn't already associated with this object
     if ($v->getUser() === null) {
         $v->setUser($this);
     }
     return $this;
 }
Exemplo n.º 2
0
Arquivo: User.php Projeto: rayku/rayku
 function setTutorStatusEnabled()
 {
     $userTutor = $this->getUserTutor();
     if (!$userTutor) {
         $userTutor = new UserTutor();
         $userTutor->setUser($this);
         $userTutor->save();
     }
 }
Exemplo n.º 3
0
 /**
  * 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      UserTutor $value A UserTutor object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(UserTutor $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getUserid();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }