/** * 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; }
/** * Returns the current translation for a given locale * * @param string $locale Locale to use for the translation, e.g. 'fr_FR' * @param ConnectionInterface $con an optional connection object * * @return ChildVariationI18n */ public function getTranslation($locale = 'en_US', ConnectionInterface $con = null) { if (!isset($this->currentTranslations[$locale])) { if (null !== $this->collVariationI18ns) { foreach ($this->collVariationI18ns as $translation) { if ($translation->getLocale() == $locale) { $this->currentTranslations[$locale] = $translation; return $translation; } } } if ($this->isNew()) { $translation = new ChildVariationI18n(); $translation->setLocale($locale); } else { $translation = ChildVariationI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->findOneOrCreate($con); $this->currentTranslations[$locale] = $translation; } $this->addVariationI18n($translation); } return $this->currentTranslations[$locale]; }
/** * Filter the query by a related \App\Propel\VariationI18n object * * @param \App\Propel\VariationI18n|ObjectCollection $variationI18n the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ChildVariationQuery The current query, for fluid interface */ public function filterByVariationI18n($variationI18n, $comparison = null) { if ($variationI18n instanceof \App\Propel\VariationI18n) { return $this->addUsingAlias(VariationTableMap::COL_VARIATION_ID, $variationI18n->getVariationId(), $comparison); } elseif ($variationI18n instanceof ObjectCollection) { return $this->useVariationI18nQuery()->filterByPrimaryKeys($variationI18n->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByVariationI18n() only accepts arguments of type \\App\\Propel\\VariationI18n or Collection'); } }
/** * 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; } }