Пример #1
0
 /**
  * Sets a single PcHideableHintsSetting object as related to this object by a one-to-one relationship.
  *
  * @param      PcHideableHintsSetting $l PcHideableHintsSetting
  * @return     PcUser The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setPcHideableHintsSetting(PcHideableHintsSetting $v)
 {
     $this->singlePcHideableHintsSetting = $v;
     // Make sure that that the passed-in PcHideableHintsSetting isn't already associated with this object
     if ($v->getPcUser() === null) {
         $v->setPcUser($this);
     }
     return $this;
 }
 /**
  * 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      PcHideableHintsSetting $value A PcHideableHintsSetting object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(PcHideableHintsSetting $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Пример #3
0
 public function executeHideHint(sfWebRequest $request)
 {
     $user = PcUserPeer::getLoggedInUser();
     $userId = $user->getId();
     $hintId = $request->getParameter('hintId');
     if ($hintId) {
         $setting = PcHideableHintsSettingPeer::retrieveByPK($userId);
         if (!is_object($setting)) {
             $setting = new PcHideableHintsSetting();
             $setting->setId($userId);
         }
         switch ($hintId) {
             case PcHideableHintsSettingPeer::INBOX_HINT:
                 $setting->setInbox(1);
                 break;
             case PcHideableHintsSettingPeer::TODO_HINT:
                 $setting->setTodo(1);
                 break;
             case PcHideableHintsSettingPeer::COMPLETED_HINT:
                 $setting->setCompleted(1);
                 break;
             case PcHideableHintsSettingPeer::QUOTE_HINT:
                 $setting->setQuote(1);
                 break;
         }
         $setting->save();
     }
     return $this->renderDefault();
 }