本文整理汇总了PHP中JobPeer::getValueSet方法的典型用法代码示例。如果您正苦于以下问题:PHP JobPeer::getValueSet方法的具体用法?PHP JobPeer::getValueSet怎么用?PHP JobPeer::getValueSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JobPeer
的用法示例。
在下文中一共展示了JobPeer::getValueSet方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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->setUserId($value);
break;
case 2:
$this->setChartId($value);
break;
case 3:
$valueSet = JobPeer::getValueSet(JobPeer::STATUS);
if (isset($valueSet[$value])) {
$value = $valueSet[$value];
}
$this->setStatus($value);
break;
case 4:
$this->setCreatedAt($value);
break;
case 5:
$this->setDoneAt($value);
break;
case 6:
$this->setType($value);
break;
case 7:
$this->setParameter($value);
break;
case 8:
$this->setFailReason($value);
break;
}
// switch()
}
示例2: 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 = JobPeer::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);
}
示例3: filterByStatus
/**
* Filter the query on the status column
*
* @param mixed $status The value to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return JobQuery The current query, for fluid interface
*/
public function filterByStatus($status = null, $comparison = null)
{
$valueSet = JobPeer::getValueSet(JobPeer::STATUS);
if (is_scalar($status)) {
if (!in_array($status, $valueSet)) {
throw new PropelException(sprintf('Value "%s" is not accepted in this enumerated column', $status));
}
$status = array_search($status, $valueSet);
} elseif (is_array($status)) {
$convertedValues = array();
foreach ($status 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);
}
$status = $convertedValues;
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(JobPeer::STATUS, $status, $comparison);
}