예제 #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->collBranchCoverages) {
             foreach ($this->collBranchCoverages as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collUserProfiles) {
             foreach ($this->collUserProfiles as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collCities) {
             foreach ($this->collCities as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collAreas) {
             foreach ($this->collAreas as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collPrincipals) {
             foreach ($this->collPrincipals as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collStores) {
             foreach ($this->collStores as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->aCountry instanceof Persistent) {
             $this->aCountry->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     if ($this->collBranchCoverages instanceof PropelCollection) {
         $this->collBranchCoverages->clearIterator();
     }
     $this->collBranchCoverages = null;
     if ($this->collUserProfiles instanceof PropelCollection) {
         $this->collUserProfiles->clearIterator();
     }
     $this->collUserProfiles = null;
     if ($this->collCities instanceof PropelCollection) {
         $this->collCities->clearIterator();
     }
     $this->collCities = null;
     if ($this->collAreas instanceof PropelCollection) {
         $this->collAreas->clearIterator();
     }
     $this->collAreas = null;
     if ($this->collPrincipals instanceof PropelCollection) {
         $this->collPrincipals->clearIterator();
     }
     $this->collPrincipals = null;
     if ($this->collStores instanceof PropelCollection) {
         $this->collStores->clearIterator();
     }
     $this->collStores = null;
     $this->aCountry = null;
 }
예제 #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->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;
 }
예제 #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;
 }
예제 #4
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;
 }