Exemple #1
0
 /**
  * Sets the properties of the current object to the value they had at a specific version
  *
  * @param ChildCustomerVersion $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 ChildCustomer The current object (for fluent API support)
  */
 public function populateFromVersion($version, $con = null, &$loadedObjects = array())
 {
     $loadedObjects['ChildCustomer'][$version->getId()][$version->getVersion()] = $this;
     $this->setId($version->getId());
     $this->setRef($version->getRef());
     $this->setTitleId($version->getTitleId());
     $this->setFirstname($version->getFirstname());
     $this->setLastname($version->getLastname());
     $this->setEmail($version->getEmail());
     $this->setPassword($version->getPassword());
     $this->setAlgo($version->getAlgo());
     $this->setReseller($version->getReseller());
     $this->setLang($version->getLang());
     $this->setSponsor($version->getSponsor());
     $this->setDiscount($version->getDiscount());
     $this->setRememberMeToken($version->getRememberMeToken());
     $this->setRememberMeSerial($version->getRememberMeSerial());
     $this->setCreatedAt($version->getCreatedAt());
     $this->setUpdatedAt($version->getUpdatedAt());
     $this->setVersion($version->getVersion());
     $this->setVersionCreatedAt($version->getVersionCreatedAt());
     $this->setVersionCreatedBy($version->getVersionCreatedBy());
     if ($fkValues = $version->getOrderIds()) {
         $this->clearOrders();
         $fkVersions = $version->getOrderVersions();
         $query = ChildOrderVersionQuery::create();
         foreach ($fkValues as $key => $value) {
             $c1 = $query->getNewCriterion(OrderVersionTableMap::ID, $value);
             $c2 = $query->getNewCriterion(OrderVersionTableMap::VERSION, $fkVersions[$key]);
             $c1->addAnd($c2);
             $query->addOr($c1);
         }
         foreach ($query->find($con) as $relatedVersion) {
             if (isset($loadedObjects['ChildOrder']) && isset($loadedObjects['ChildOrder'][$relatedVersion->getId()]) && isset($loadedObjects['ChildOrder'][$relatedVersion->getId()][$relatedVersion->getVersion()])) {
                 $related = $loadedObjects['ChildOrder'][$relatedVersion->getId()][$relatedVersion->getVersion()];
             } else {
                 $related = new ChildOrder();
                 $related->populateFromVersion($relatedVersion, $con, $loadedObjects);
                 $related->setNew(false);
             }
             $this->addOrder($related);
             $this->collOrdersPartial = false;
         }
     }
     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\CustomerVersion $obj A \Thelia\Model\CustomerVersion 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 #3
0
 /**
  * Filter the query by a related \Thelia\Model\CustomerVersion object
  *
  * @param \Thelia\Model\CustomerVersion|ObjectCollection $customerVersion  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildCustomerQuery The current query, for fluid interface
  */
 public function filterByCustomerVersion($customerVersion, $comparison = null)
 {
     if ($customerVersion instanceof \Thelia\Model\CustomerVersion) {
         return $this->addUsingAlias(CustomerTableMap::ID, $customerVersion->getId(), $comparison);
     } elseif ($customerVersion instanceof ObjectCollection) {
         return $this->useCustomerVersionQuery()->filterByPrimaryKeys($customerVersion->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByCustomerVersion() only accepts arguments of type \\Thelia\\Model\\CustomerVersion or Collection');
     }
 }
 /**
  * Exclude object from result
  *
  * @param   ChildCustomerVersion $customerVersion Object to remove from the list of results
  *
  * @return ChildCustomerVersionQuery The current query, for fluid interface
  */
 public function prune($customerVersion = null)
 {
     if ($customerVersion) {
         $this->addCond('pruneCond0', $this->getAliasedColName(CustomerVersionTableMap::ID), $customerVersion->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(CustomerVersionTableMap::VERSION), $customerVersion->getVersion(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }