Пример #1
0
 /**
  * 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');
     }
 }
Пример #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;
     }
 }