当前位置: 首页>>代码示例>>PHP>>正文


PHP UserPeer::getValueSet方法代码示例

本文整理汇总了PHP中UserPeer::getValueSet方法的典型用法代码示例。如果您正苦于以下问题:PHP UserPeer::getValueSet方法的具体用法?PHP UserPeer::getValueSet怎么用?PHP UserPeer::getValueSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UserPeer的用法示例。


在下文中一共展示了UserPeer::getValueSet方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getAnsweredValue

 /**
  * Get value of a int key ENUM
  * @param int $v
  * @throws PropelException - if the key is not accepted by this enum
  * @return string
  */
 public static function getAnsweredValue($v)
 {
     $valueSet = UserPeer::getValueSet(UserPeer::ANSWERED);
     if (!isset($valueSet[$v])) {
         throw new PropelException('Unknown stored enum key: ' . $v);
     }
     return $valueSet[$v];
 }
开发者ID:nbehier,项目名称:BirthdayPropilex,代码行数:14,代码来源:User.php

示例2: filterByRole

 /**
  * Filter the query on the role column
  *
  * @param     mixed $role The value to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    UserQuery The current query, for fluid interface
  */
 public function filterByRole($role = null, $comparison = null)
 {
     $valueSet = UserPeer::getValueSet(UserPeer::ROLE);
     if (is_scalar($role)) {
         if (!in_array($role, $valueSet)) {
             throw new PropelException(sprintf('Value "%s" is not accepted in this enumerated column', $role));
         }
         $role = array_search($role, $valueSet);
     } elseif (is_array($role)) {
         $convertedValues = array();
         foreach ($role as $value) {
             if (!in_array($value, $valueSet)) {
                 throw new PropelException(sprintf('Value "%s" is not accepted in this enumerated column', $value));
             }
             $convertedValues[] = array_search($value, $valueSet);
         }
         $role = $convertedValues;
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
     }
     return $this->addUsingAlias(UserPeer::ROLE, $role, $comparison);
 }
开发者ID:shelsonjava,项目名称:datawrapper,代码行数:31,代码来源:BaseUserQuery.php

示例3: setByPosition

 /**
  * Sets a field from the object by Position as specified in the xml schema.
  * Zero-based.
  *
  * @param int $pos position in xml schema
  * @param mixed $value field value
  * @return void
  */
 public function setByPosition($pos, $value)
 {
     switch ($pos) {
         case 0:
             $this->setId($value);
             break;
         case 1:
             $this->setEmail($value);
             break;
         case 2:
             $this->setPwd($value);
             break;
         case 3:
             $this->setActivateToken($value);
             break;
         case 4:
             $this->setResetPasswordToken($value);
             break;
         case 5:
             $valueSet = UserPeer::getValueSet(UserPeer::ROLE);
             if (isset($valueSet[$value])) {
                 $value = $valueSet[$value];
             }
             $this->setRole($value);
             break;
         case 6:
             $this->setDeleted($value);
             break;
         case 7:
             $this->setLanguage($value);
             break;
         case 8:
             $this->setCreatedAt($value);
             break;
         case 9:
             $this->setName($value);
             break;
         case 10:
             $this->setWebsite($value);
             break;
         case 11:
             $this->setSmProfile($value);
             break;
         case 12:
             $this->setOAuthSignIn($value);
             break;
     }
     // switch()
 }
开发者ID:rwardhan,项目名称:datawrapper-1,代码行数:57,代码来源:BaseUser.php

示例4: getSqlValueForEnum

 /**
  * Gets the SQL value for the ENUM column value
  *
  * @param string $colname ENUM column name.
  * @param string $enumVal ENUM value.
  *
  * @return int            SQL value
  */
 public static function getSqlValueForEnum($colname, $enumVal)
 {
     $values = UserPeer::getValueSet($colname);
     if (!in_array($enumVal, $values)) {
         throw new PropelException(sprintf('Value "%s" is not accepted in this enumerated column', $colname));
     }
     return array_search($enumVal, $values);
 }
开发者ID:Halfnhav4,项目名称:datawrapper,代码行数:16,代码来源:BaseUserPeer.php


注:本文中的UserPeer::getValueSet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。