/** * Filter the query by a related \App\Propel\Resource object * * @param \App\Propel\Resource|ObjectCollection $resource The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @throws \Propel\Runtime\Exception\PropelException * * @return ChildProductHighlightedQuery The current query, for fluid interface */ public function filterByResource($resource, $comparison = null) { if ($resource instanceof \App\Propel\Resource) { return $this->addUsingAlias(ProductHighlightedTableMap::COL_PRODUCT_HIGHLIGHTED_FOR, $resource->getResourceId(), $comparison); } elseif ($resource instanceof ObjectCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this->addUsingAlias(ProductHighlightedTableMap::COL_PRODUCT_HIGHLIGHTED_FOR, $resource->toKeyValue('PrimaryKey', 'ResourceId'), $comparison); } else { throw new PropelException('filterByResource() only accepts arguments of type \\App\\Propel\\Resource or Collection'); } }
/** * Filter the query by a related \App\Propel\Resource object * * @param \App\Propel\Resource|ObjectCollection $resource The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @throws \Propel\Runtime\Exception\PropelException * * @return ChildSocialRecommendationQuery The current query, for fluid interface */ public function filterByResource($resource, $comparison = null) { if ($resource instanceof \App\Propel\Resource) { return $this->addUsingAlias(SocialRecommendationTableMap::COL_SOCIAL_RECOMMENDATION_FOR, $resource->getResourceId(), $comparison); } elseif ($resource instanceof ObjectCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this->addUsingAlias(SocialRecommendationTableMap::COL_SOCIAL_RECOMMENDATION_FOR, $resource->toKeyValue('PrimaryKey', 'ResourceId'), $comparison); } else { throw new PropelException('filterByResource() only accepts arguments of type \\App\\Propel\\Resource or Collection'); } }