/**
  * Transform one State object into a Array
  * 
  * @author Jonathan Sandoval <*****@*****.**>
  * @param   State    $state      State object to transform
  * @return  Array    $array      Array result or null
  */
 static function StateToArray($state = null)
 {
     if ($state === null) {
         return null;
     }
     $array = array();
     $array['id'] = $state->getId();
     $array['shortName'] = $state->getShortName();
     $array['name'] = $state->getName();
     $array['country'] = $state->getCountry();
     return $array;
 }
 /**
  * Filter the query by a related State object
  *
  * @param   State|PropelObjectCollection $state The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return   ContactQuery The current query, for fluid interface
  * @throws   PropelException - if the provided filter is invalid.
  */
 public function filterByState($state, $comparison = null)
 {
     if ($state instanceof State) {
         return $this->addUsingAlias(ContactPeer::STATE_ID, $state->getId(), $comparison);
     } elseif ($state instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ContactPeer::STATE_ID, $state->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByState() only accepts arguments of type State or PropelCollection');
     }
 }
Exemple #3
0
 /**
  * Declares an association between this object and a State object.
  *
  * @param                  State $v
  * @return                 Contact The current object (for fluent API support)
  * @throws PropelException
  */
 public function setState(State $v = null)
 {
     if ($v === null) {
         $this->setStateId(NULL);
     } else {
         $this->setStateId($v->getId());
     }
     $this->aState = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the State object, it will not be re-added.
     if ($v !== null) {
         $v->addContact($this);
     }
     return $this;
 }
Exemple #4
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      State $value A State object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(State $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }