コード例 #1
0
ファイル: PcUser.php プロジェクト: ntemple/intelli-plancake
 public function getHideableHintsSetting()
 {
     $ret = array();
     $setting = PcHideableHintsSettingPeer::retrieveByPK($this->getId());
     if (is_object($setting)) {
         $ret[PcHideableHintsSettingPeer::INBOX_HINT] = (int) $setting->getInbox();
         $ret[PcHideableHintsSettingPeer::TODO_HINT] = (int) $setting->getTodo();
         $ret[PcHideableHintsSettingPeer::COMPLETED_HINT] = (int) $setting->getCompleted();
         $ret[PcHideableHintsSettingPeer::QUOTE_HINT] = (int) $setting->getQuote();
     } else {
         $ret[PcHideableHintsSettingPeer::INBOX_HINT] = 0;
         $ret[PcHideableHintsSettingPeer::TODO_HINT] = 0;
         $ret[PcHideableHintsSettingPeer::COMPLETED_HINT] = 0;
         $ret[PcHideableHintsSettingPeer::QUOTE_HINT] = 0;
     }
     return $ret;
 }
コード例 #2
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = PcHideableHintsSettingPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setInbox($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setTodo($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setCompleted($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setQuote($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setUpdatedAt($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setCreatedAt($arr[$keys[6]]);
     }
 }
コード例 #3
0
 /**
  * Gets a single PcHideableHintsSetting object, which is related to this object by a one-to-one relationship.
  *
  * @param      PropelPDO $con
  * @return     PcHideableHintsSetting
  * @throws     PropelException
  */
 public function getPcHideableHintsSetting(PropelPDO $con = null)
 {
     if ($this->singlePcHideableHintsSetting === null && !$this->isNew()) {
         $this->singlePcHideableHintsSetting = PcHideableHintsSettingPeer::retrieveByPK($this->id, $con);
     }
     return $this->singlePcHideableHintsSetting;
 }
コード例 #4
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(PcHideableHintsSettingPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(PcHideableHintsSettingPeer::DATABASE_NAME);
         $criteria->add(PcHideableHintsSettingPeer::ID, $pks, Criteria::IN);
         $objs = PcHideableHintsSettingPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #5
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();
 }