예제 #1
0
 /**
  * Filter the query by a related \News object
  *
  * @param \News|ObjectCollection $news the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildUserQuery The current query, for fluid interface
  */
 public function filterByNews($news, $comparison = null)
 {
     if ($news instanceof \News) {
         return $this->addUsingAlias(UserTableMap::COL_ID, $news->getUserId(), $comparison);
     } elseif ($news instanceof ObjectCollection) {
         return $this->useNewsQuery()->filterByPrimaryKeys($news->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByNews() only accepts arguments of type \\News or Collection');
     }
 }