Пример #1
0
 /**
  * Method called to associate a ChildVariationI18n object to this object
  * through the ChildVariationI18n foreign key attribute.
  *
  * @param  ChildVariationI18n $l ChildVariationI18n
  * @return $this|\App\Propel\Variation The current object (for fluent API support)
  */
 public function addVariationI18n(ChildVariationI18n $l)
 {
     if ($l && ($locale = $l->getLocale())) {
         $this->setLocale($locale);
         $this->currentTranslations[$locale] = $l;
     }
     if ($this->collVariationI18ns === null) {
         $this->initVariationI18ns();
         $this->collVariationI18nsPartial = true;
     }
     if (!$this->collVariationI18ns->contains($l)) {
         $this->doAddVariationI18n($l);
         if ($this->variationI18nsScheduledForDeletion and $this->variationI18nsScheduledForDeletion->contains($l)) {
             $this->variationI18nsScheduledForDeletion->remove($this->variationI18nsScheduledForDeletion->search($l));
         }
     }
     return $this;
 }
Пример #2
0
 /**
  * Exclude object from result
  *
  * @param   ChildVariationI18n $variationI18n Object to remove from the list of results
  *
  * @return $this|ChildVariationI18nQuery The current query, for fluid interface
  */
 public function prune($variationI18n = null)
 {
     if ($variationI18n) {
         $this->addCond('pruneCond0', $this->getAliasedColName(VariationI18nTableMap::COL_VARIATION_ID), $variationI18n->getVariationId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(VariationI18nTableMap::COL_LOCALE), $variationI18n->getLocale(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     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\VariationI18n $obj A \App\Propel\VariationI18n 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->getVariationId() || is_scalar($obj->getVariationId()) || is_callable([$obj->getVariationId(), '__toString']) ? (string) $obj->getVariationId() : $obj->getVariationId(), null === $obj->getLocale() || is_scalar($obj->getLocale()) || is_callable([$obj->getLocale(), '__toString']) ? (string) $obj->getLocale() : $obj->getLocale()]);
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }