Example #1
0
 /**
  * Resets all references to other model objects or collections of model objects.
  *
  * This method is a user-space workaround for PHP's inability to garbage collect
  * objects with circular references (even in PHP 5.3). This is currently necessary
  * when using Propel in certain daemon or large-volume/high-memory operations.
  *
  * @param boolean $deep Whether to also clear the references on all referrer objects.
  */
 public function clearAllReferences($deep = false)
 {
     if ($deep && !$this->alreadyInClearAllReferencesDeep) {
         $this->alreadyInClearAllReferencesDeep = true;
         if ($this->collAreaAssignments) {
             foreach ($this->collAreaAssignments as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collStores) {
             foreach ($this->collStores as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->aState instanceof Persistent) {
             $this->aState->clearAllReferences($deep);
         }
         if ($this->aCity instanceof Persistent) {
             $this->aCity->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     if ($this->collAreaAssignments instanceof PropelCollection) {
         $this->collAreaAssignments->clearIterator();
     }
     $this->collAreaAssignments = null;
     if ($this->collStores instanceof PropelCollection) {
         $this->collStores->clearIterator();
     }
     $this->collStores = null;
     $this->aState = null;
     $this->aCity = null;
 }
Example #2
0
 /**
  * Resets all references to other model objects or collections of model objects.
  *
  * This method is a user-space workaround for PHP's inability to garbage collect
  * objects with circular references (even in PHP 5.3). This is currently necessary
  * when using Propel in certain daemon or large-volume/high-memory operations.
  *
  * @param boolean $deep Whether to also clear the references on all referrer objects.
  */
 public function clearAllReferences($deep = false)
 {
     if ($deep && !$this->alreadyInClearAllReferencesDeep) {
         $this->alreadyInClearAllReferencesDeep = true;
         if ($this->aState instanceof Persistent) {
             $this->aState->clearAllReferences($deep);
         }
         if ($this->aRegion instanceof Persistent) {
             $this->aRegion->clearAllReferences($deep);
         }
         if ($this->aCity instanceof Persistent) {
             $this->aCity->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     $this->aState = null;
     $this->aRegion = null;
     $this->aCity = null;
 }
Example #3
0
 /**
  * Resets all references to other model objects or collections of model objects.
  *
  * This method is a user-space workaround for PHP's inability to garbage collect
  * objects with circular references (even in PHP 5.3). This is currently necessary
  * when using Propel in certain daemon or large-volume/high-memory operations.
  *
  * @param boolean $deep Whether to also clear the references on all referrer objects.
  */
 public function clearAllReferences($deep = false)
 {
     if ($deep && !$this->alreadyInClearAllReferencesDeep) {
         $this->alreadyInClearAllReferencesDeep = true;
         if ($this->aState instanceof Persistent) {
             $this->aState->clearAllReferences($deep);
         }
         if ($this->aCountry instanceof Persistent) {
             $this->aCountry->clearAllReferences($deep);
         }
         if ($this->aPrincipal instanceof Persistent) {
             $this->aPrincipal->clearAllReferences($deep);
         }
         if ($this->aUser instanceof Persistent) {
             $this->aUser->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     $this->aState = null;
     $this->aCountry = null;
     $this->aPrincipal = null;
     $this->aUser = null;
 }
Example #4
0
 /**
  * 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                 PrincipalQuery 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(PrincipalPeer::STATE_ID, $state->getId(), $comparison);
     } elseif ($state instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(PrincipalPeer::STATE_ID, $state->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByState() only accepts arguments of type State or PropelCollection');
     }
 }
Example #5
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 $obj 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($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         StatePeer::$instances[$key] = $obj;
     }
 }
Example #6
0
 /**
  * Resets all references to other model objects or collections of model objects.
  *
  * This method is a user-space workaround for PHP's inability to garbage collect
  * objects with circular references (even in PHP 5.3). This is currently necessary
  * when using Propel in certain daemon or large-volume/high-memory operations.
  *
  * @param boolean $deep Whether to also clear the references on all referrer objects.
  */
 public function clearAllReferences($deep = false)
 {
     if ($deep && !$this->alreadyInClearAllReferencesDeep) {
         $this->alreadyInClearAllReferencesDeep = true;
         if ($this->collVisitations) {
             foreach ($this->collVisitations as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->aCountry instanceof Persistent) {
             $this->aCountry->clearAllReferences($deep);
         }
         if ($this->aState instanceof Persistent) {
             $this->aState->clearAllReferences($deep);
         }
         if ($this->aRegion instanceof Persistent) {
             $this->aRegion->clearAllReferences($deep);
         }
         if ($this->aCity instanceof Persistent) {
             $this->aCity->clearAllReferences($deep);
         }
         if ($this->aArea instanceof Persistent) {
             $this->aArea->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     if ($this->collVisitations instanceof PropelCollection) {
         $this->collVisitations->clearIterator();
     }
     $this->collVisitations = null;
     $this->aCountry = null;
     $this->aState = null;
     $this->aRegion = null;
     $this->aCity = null;
     $this->aArea = null;
 }
Example #7
0
 /**
  * Exclude object from result
  *
  * @param   State $state Object to remove from the list of results
  *
  * @return StateQuery The current query, for fluid interface
  */
 public function prune($state = null)
 {
     if ($state) {
         $this->addUsingAlias(StatePeer::ID, $state->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
Example #8
0
 /**
  * Resets all references to other model objects or collections of model objects.
  *
  * This method is a user-space workaround for PHP's inability to garbage collect
  * objects with circular references (even in PHP 5.3). This is currently necessary
  * when using Propel in certain daemon or large-volume/high-memory operations.
  *
  * @param boolean $deep Whether to also clear the references on all referrer objects.
  */
 public function clearAllReferences($deep = false)
 {
     if ($deep && !$this->alreadyInClearAllReferencesDeep) {
         $this->alreadyInClearAllReferencesDeep = true;
         if ($this->collUserProfiles) {
             foreach ($this->collUserProfiles as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collProducts) {
             foreach ($this->collProducts as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collPrincipalI18ns) {
             foreach ($this->collPrincipalI18ns as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->aUser instanceof Persistent) {
             $this->aUser->clearAllReferences($deep);
         }
         if ($this->aState instanceof Persistent) {
             $this->aState->clearAllReferences($deep);
         }
         if ($this->aCountry instanceof Persistent) {
             $this->aCountry->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     // i18n behavior
     $this->currentLocale = 'en_US';
     $this->currentTranslations = null;
     if ($this->collUserProfiles instanceof PropelCollection) {
         $this->collUserProfiles->clearIterator();
     }
     $this->collUserProfiles = null;
     if ($this->collProducts instanceof PropelCollection) {
         $this->collProducts->clearIterator();
     }
     $this->collProducts = null;
     if ($this->collPrincipalI18ns instanceof PropelCollection) {
         $this->collPrincipalI18ns->clearIterator();
     }
     $this->collPrincipalI18ns = null;
     $this->aUser = null;
     $this->aState = null;
     $this->aCountry = null;
 }
Example #9
0
 /**
  * Filter the query by a related State object
  *
  * @param   State|PropelObjectCollection $state  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 CountryQuery 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(CountryPeer::ID, $state->getCountryId(), $comparison);
     } elseif ($state instanceof PropelObjectCollection) {
         return $this->useStateQuery()->filterByPrimaryKeys($state->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByState() only accepts arguments of type State or PropelCollection');
     }
 }
Example #10
0
 /**
  * @param	State $state The state object to add.
  */
 protected function doAddState($state)
 {
     $this->collStates[] = $state;
     $state->setCountry($this);
 }