本文整理汇总了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];
}
示例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);
}
示例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()
}
示例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);
}