Esempio n. 1
0
 /**
  * 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()
 }
Esempio n. 2
0
 /**
  * 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);
 }
Esempio n. 3
0
 /**
  * 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);
 }