/** * 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 \Thelia\Model\ProductPrice $obj A \Thelia\Model\ProductPrice 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(array((string) $obj->getProductSaleElementsId(), (string) $obj->getCurrencyId())); } // if key === null self::$instances[$key] = $obj; } }
/** * Exclude object from result * * @param ChildProductPrice $productPrice Object to remove from the list of results * * @return ChildProductPriceQuery The current query, for fluid interface */ public function prune($productPrice = null) { if ($productPrice) { $this->addCond('pruneCond0', $this->getAliasedColName(ProductPriceTableMap::PRODUCT_SALE_ELEMENTS_ID), $productPrice->getProductSaleElementsId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(ProductPriceTableMap::CURRENCY_ID), $productPrice->getCurrencyId(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }
/** * Filter the query by a related \Thelia\Model\ProductPrice object * * @param \Thelia\Model\ProductPrice|ObjectCollection $productPrice the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ChildProductSaleElementsQuery The current query, for fluid interface */ public function filterByProductPrice($productPrice, $comparison = null) { if ($productPrice instanceof \Thelia\Model\ProductPrice) { return $this->addUsingAlias(ProductSaleElementsTableMap::ID, $productPrice->getProductSaleElementsId(), $comparison); } elseif ($productPrice instanceof ObjectCollection) { return $this->useProductPriceQuery()->filterByPrimaryKeys($productPrice->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByProductPrice() only accepts arguments of type \\Thelia\\Model\\ProductPrice or Collection'); } }