Ejemplo n.º 1
0
 /**
  * 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];
 }
Ejemplo n.º 2
0
 /**
  * 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);
 }
Ejemplo n.º 3
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->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()
 }
Ejemplo n.º 4
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 = 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);
 }