/**
  * Filter the query by a related SystemEventSubscription object
  *
  * @param   SystemEventSubscription|PropelObjectCollection $systemEventSubscription The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return   SystemEventInstanceMessageQuery The current query, for fluid interface
  * @throws   PropelException - if the provided filter is invalid.
  */
 public function filterBySystemEventSubscription($systemEventSubscription, $comparison = null)
 {
     if ($systemEventSubscription instanceof SystemEventSubscription) {
         return $this->addUsingAlias(SystemEventInstanceMessagePeer::SYSTEM_EVENT_SUBSCRIPTION_ID, $systemEventSubscription->getId(), $comparison);
     } elseif ($systemEventSubscription instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(SystemEventInstanceMessagePeer::SYSTEM_EVENT_SUBSCRIPTION_ID, $systemEventSubscription->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterBySystemEventSubscription() only accepts arguments of type SystemEventSubscription or PropelCollection');
     }
 }
 /**
  * Exclude object from result
  *
  * @param   SystemEventSubscription $systemEventSubscription Object to remove from the list of results
  *
  * @return SystemEventSubscriptionQuery The current query, for fluid interface
  */
 public function prune($systemEventSubscription = null)
 {
     if ($systemEventSubscription) {
         $this->addUsingAlias(SystemEventSubscriptionPeer::ID, $systemEventSubscription->getId(), Criteria::NOT_EQUAL);
     }
     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 -- 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      SystemEventSubscription $obj A SystemEventSubscription 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 ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Declares an association between this object and a SystemEventSubscription object.
  *
  * @param                  SystemEventSubscription $v
  * @return                 SystemEventInstanceMessage The current object (for fluent API support)
  * @throws PropelException
  */
 public function setSystemEventSubscription(SystemEventSubscription $v = null)
 {
     if ($v === null) {
         $this->setSystemEventSubscriptionId(NULL);
     } else {
         $this->setSystemEventSubscriptionId($v->getId());
     }
     $this->aSystemEventSubscription = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the SystemEventSubscription object, it will not be re-added.
     if ($v !== null) {
         $v->addSystemEventInstanceMessage($this);
     }
     return $this;
 }
Exemplo n.º 5
0
 /**
  * @param	SystemEventSubscription $systemEventSubscription The systemEventSubscription object to add.
  */
 protected function doAddSystemEventSubscription($systemEventSubscription)
 {
     $this->collSystemEventSubscriptions[] = $systemEventSubscription;
     $systemEventSubscription->setSystemEvent($this);
 }
Exemplo n.º 6
0
 /**
  * Filter the query by a related SystemEventSubscription object
  *
  * @param   SystemEventSubscription|PropelObjectCollection $systemEventSubscription  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return   SystemEventQuery The current query, for fluid interface
  * @throws   PropelException - if the provided filter is invalid.
  */
 public function filterBySystemEventSubscription($systemEventSubscription, $comparison = null)
 {
     if ($systemEventSubscription instanceof SystemEventSubscription) {
         return $this->addUsingAlias(SystemEventPeer::ID, $systemEventSubscription->getSystemEventId(), $comparison);
     } elseif ($systemEventSubscription instanceof PropelObjectCollection) {
         return $this->useSystemEventSubscriptionQuery()->filterByPrimaryKeys($systemEventSubscription->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterBySystemEventSubscription() only accepts arguments of type SystemEventSubscription or PropelCollection');
     }
 }