示例#1
0
 /**
  * Exclude object from result
  *
  * @param   ChildUnitI18n $unitI18n Object to remove from the list of results
  *
  * @return $this|ChildUnitI18nQuery The current query, for fluid interface
  */
 public function prune($unitI18n = null)
 {
     if ($unitI18n) {
         $this->addCond('pruneCond0', $this->getAliasedColName(UnitI18nTableMap::COL_UNIT_ID), $unitI18n->getUnitId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(UnitI18nTableMap::COL_LOCALE), $unitI18n->getLocale(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
示例#2
0
 /**
  * Method called to associate a ChildUnitI18n object to this object
  * through the ChildUnitI18n foreign key attribute.
  *
  * @param  ChildUnitI18n $l ChildUnitI18n
  * @return $this|\App\Propel\Unit The current object (for fluent API support)
  */
 public function addUnitI18n(ChildUnitI18n $l)
 {
     if ($l && ($locale = $l->getLocale())) {
         $this->setLocale($locale);
         $this->currentTranslations[$locale] = $l;
     }
     if ($this->collUnitI18ns === null) {
         $this->initUnitI18ns();
         $this->collUnitI18nsPartial = true;
     }
     if (!$this->collUnitI18ns->contains($l)) {
         $this->doAddUnitI18n($l);
         if ($this->unitI18nsScheduledForDeletion and $this->unitI18nsScheduledForDeletion->contains($l)) {
             $this->unitI18nsScheduledForDeletion->remove($this->unitI18nsScheduledForDeletion->search($l));
         }
     }
     return $this;
 }
示例#3
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 you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \App\Propel\UnitI18n $obj A \App\Propel\UnitI18n 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 (null === $key) {
             $key = serialize([null === $obj->getUnitId() || is_scalar($obj->getUnitId()) || is_callable([$obj->getUnitId(), '__toString']) ? (string) $obj->getUnitId() : $obj->getUnitId(), null === $obj->getLocale() || is_scalar($obj->getLocale()) || is_callable([$obj->getLocale(), '__toString']) ? (string) $obj->getLocale() : $obj->getLocale()]);
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }