Пример #1
0
 /**
  * Exclude object from result
  *
  * @param   ChildCouponCountry $couponCountry Object to remove from the list of results
  *
  * @return ChildCouponCountryQuery The current query, for fluid interface
  */
 public function prune($couponCountry = null)
 {
     if ($couponCountry) {
         $this->addCond('pruneCond0', $this->getAliasedColName(CouponCountryTableMap::COUPON_ID), $couponCountry->getCouponId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(CouponCountryTableMap::COUNTRY_ID), $couponCountry->getCountryId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
Пример #2
0
 /**
  * Filter the query by a related \Thelia\Model\CouponCountry object
  *
  * @param \Thelia\Model\CouponCountry|ObjectCollection $couponCountry  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildCouponQuery The current query, for fluid interface
  */
 public function filterByCouponCountry($couponCountry, $comparison = null)
 {
     if ($couponCountry instanceof \Thelia\Model\CouponCountry) {
         return $this->addUsingAlias(CouponTableMap::ID, $couponCountry->getCouponId(), $comparison);
     } elseif ($couponCountry instanceof ObjectCollection) {
         return $this->useCouponCountryQuery()->filterByPrimaryKeys($couponCountry->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByCouponCountry() only accepts arguments of type \\Thelia\\Model\\CouponCountry or Collection');
     }
 }
Пример #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 \Thelia\Model\CouponCountry $obj A \Thelia\Model\CouponCountry 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->getCouponId(), (string) $obj->getCountryId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Пример #4
0
 /**
  * @param    Country $country The country object to add.
  */
 protected function doAddCountry($country)
 {
     $couponCountry = new ChildCouponCountry();
     $couponCountry->setCountry($country);
     $this->addCouponCountry($couponCountry);
     // set the back reference to this object directly as using provided method either results
     // in endless loop or in multiple relations
     if (!$country->getCoupons()->contains($this)) {
         $foreignCollection = $country->getCoupons();
         $foreignCollection[] = $this;
     }
 }