/**
  * Exclude object from result
  *
  * @param   ChildProductVersion $productVersion Object to remove from the list of results
  *
  * @return ChildProductVersionQuery The current query, for fluid interface
  */
 public function prune($productVersion = null)
 {
     if ($productVersion) {
         $this->addCond('pruneCond0', $this->getAliasedColName(ProductVersionTableMap::ID), $productVersion->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(ProductVersionTableMap::VERSION), $productVersion->getVersion(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
Exemple #2
0
 /**
  * Sets the properties of the current object to the value they had at a specific version
  *
  * @param ChildProductVersion $version The version object to use
  * @param ConnectionInterface   $con the connection to use
  * @param array                 $loadedObjects objects that been loaded in a chain of populateFromVersion calls on referrer or fk objects.
  *
  * @return ChildProduct The current object (for fluent API support)
  */
 public function populateFromVersion($version, $con = null, &$loadedObjects = array())
 {
     $loadedObjects['ChildProduct'][$version->getId()][$version->getVersion()] = $this;
     $this->setId($version->getId());
     $this->setTaxRuleId($version->getTaxRuleId());
     $this->setRef($version->getRef());
     $this->setVisible($version->getVisible());
     $this->setPosition($version->getPosition());
     $this->setTemplateId($version->getTemplateId());
     $this->setBrandId($version->getBrandId());
     $this->setVirtual($version->getVirtual());
     $this->setCreatedAt($version->getCreatedAt());
     $this->setUpdatedAt($version->getUpdatedAt());
     $this->setVersion($version->getVersion());
     $this->setVersionCreatedAt($version->getVersionCreatedAt());
     $this->setVersionCreatedBy($version->getVersionCreatedBy());
     return $this;
 }
 /**
  * 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\ProductVersion $obj A \Thelia\Model\ProductVersion 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->getId(), (string) $obj->getVersion()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Exemple #4
0
 /**
  * Filter the query by a related \Thelia\Model\ProductVersion object
  *
  * @param \Thelia\Model\ProductVersion|ObjectCollection $productVersion  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildProductQuery The current query, for fluid interface
  */
 public function filterByProductVersion($productVersion, $comparison = null)
 {
     if ($productVersion instanceof \Thelia\Model\ProductVersion) {
         return $this->addUsingAlias(ProductTableMap::ID, $productVersion->getId(), $comparison);
     } elseif ($productVersion instanceof ObjectCollection) {
         return $this->useProductVersionQuery()->filterByPrimaryKeys($productVersion->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByProductVersion() only accepts arguments of type \\Thelia\\Model\\ProductVersion or Collection');
     }
 }