Ejemplo n.º 1
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 -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      Offer $value A Offer object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(Offer $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Ejemplo n.º 2
0
 /**
  * Declares an association between this object and a Offer object.
  *
  * @param      Offer $v
  * @return     Customer The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setOffer(Offer $v = null)
 {
     if ($v === null) {
         $this->setOfferId(NULL);
     } else {
         $this->setOfferId($v->getId());
     }
     $this->aOffer = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Offer object, it will not be re-added.
     if ($v !== null) {
         $v->addCustomer($this);
     }
     return $this;
 }
Ejemplo n.º 3
0
 /**
  * @param Offer $offer
  * @return $this
  */
 public function addOffer(Offer $offer)
 {
     $idx = !is_null($offer->getGroupId()) ? (string) $offer->getGroupId() . ":" . (string) $offer->getId() : "0:" . (string) $offer->getId();
     $this->offers[$idx] = $offer;
     return $this;
 }