Ejemplo n.º 1
0
 /**
  * Filter the query by a related \RRightsForissue object
  *
  * @param \RRightsForissue|ObjectCollection $rRightsForissue the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildIssuesQuery The current query, for fluid interface
  */
 public function filterByRRightsForissue($rRightsForissue, $comparison = null)
 {
     if ($rRightsForissue instanceof \RRightsForissue) {
         return $this->addUsingAlias(IssuesTableMap::COL_ID, $rRightsForissue->getIssueid(), $comparison);
     } elseif ($rRightsForissue instanceof ObjectCollection) {
         return $this->useRRightsForissueQuery()->filterByPrimaryKeys($rRightsForissue->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByRRightsForissue() only accepts arguments of type \\RRightsForissue or Collection');
     }
 }
Ejemplo n.º 2
0
 /**
  * Exclude object from result
  *
  * @param   ChildRRightsForissue $rRightsForissue Object to remove from the list of results
  *
  * @return $this|ChildRRightsForissueQuery The current query, for fluid interface
  */
 public function prune($rRightsForissue = null)
 {
     if ($rRightsForissue) {
         $this->addCond('pruneCond0', $this->getAliasedColName(RRightsForissueTableMap::COL__RIGHTID), $rRightsForissue->getRightid(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(RRightsForissueTableMap::COL__ISSUEID), $rRightsForissue->getIssueid(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }