/**
  * Create a combination for a given product sale element
  *
  * @param ConnectionInterface $con                   the Propel connection
  * @param ProductSaleElements $salesElement          the product sale element
  * @param array               $combinationAttributes an array oif attributes av IDs
  */
 protected function createCombination(ConnectionInterface $con, ProductSaleElements $salesElement, $combinationAttributes)
 {
     foreach ($combinationAttributes as $attributeAvId) {
         $attributeAv = AttributeAvQuery::create()->findPk($attributeAvId);
         if ($attributeAv !== null) {
             $attributeCombination = new AttributeCombination();
             $attributeCombination->setAttributeAvId($attributeAvId)->setAttribute($attributeAv->getAttribute())->setProductSaleElements($salesElement)->save($con);
         }
     }
 }
 /**
  * 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\AttributeCombination $obj A \Thelia\Model\AttributeCombination 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->getAttributeId(), (string) $obj->getAttributeAvId(), (string) $obj->getProductSaleElementsId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Exclude object from result
  *
  * @param   ChildAttributeCombination $attributeCombination Object to remove from the list of results
  *
  * @return ChildAttributeCombinationQuery The current query, for fluid interface
  */
 public function prune($attributeCombination = null)
 {
     if ($attributeCombination) {
         $this->addCond('pruneCond0', $this->getAliasedColName(AttributeCombinationTableMap::ATTRIBUTE_ID), $attributeCombination->getAttributeId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(AttributeCombinationTableMap::ATTRIBUTE_AV_ID), $attributeCombination->getAttributeAvId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond2', $this->getAliasedColName(AttributeCombinationTableMap::PRODUCT_SALE_ELEMENTS_ID), $attributeCombination->getProductSaleElementsId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1', 'pruneCond2'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
Example #4
0
 /**
  * Filter the query by a related \Thelia\Model\AttributeCombination object
  *
  * @param \Thelia\Model\AttributeCombination|ObjectCollection $attributeCombination  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildAttributeQuery The current query, for fluid interface
  */
 public function filterByAttributeCombination($attributeCombination, $comparison = null)
 {
     if ($attributeCombination instanceof \Thelia\Model\AttributeCombination) {
         return $this->addUsingAlias(AttributeTableMap::ID, $attributeCombination->getAttributeId(), $comparison);
     } elseif ($attributeCombination instanceof ObjectCollection) {
         return $this->useAttributeCombinationQuery()->filterByPrimaryKeys($attributeCombination->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByAttributeCombination() only accepts arguments of type \\Thelia\\Model\\AttributeCombination or Collection');
     }
 }