Ejemplo n.º 1
0
 /**
  * Filter the query by a related \App\Propel\User object
  *
  * @param \App\Propel\User|ObjectCollection $user the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildResourceQuery The current query, for fluid interface
  */
 public function filterByUser($user, $comparison = null)
 {
     if ($user instanceof \App\Propel\User) {
         return $this->addUsingAlias(ResourceTableMap::COL_RESOURCE_ID, $user->getResourceId(), $comparison);
     } elseif ($user instanceof ObjectCollection) {
         return $this->useUserQuery()->filterByPrimaryKeys($user->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByUser() only accepts arguments of type \\App\\Propel\\User 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');
     }
 }
Ejemplo n.º 3
0
 /**
  * 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');
     }
 }
Ejemplo n.º 4
0
 /**
  * Filter the query by a related \Thelia\Model\ProfileResource object
  *
  * @param \Thelia\Model\ProfileResource|ObjectCollection $profileResource  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildResourceQuery The current query, for fluid interface
  */
 public function filterByProfileResource($profileResource, $comparison = null)
 {
     if ($profileResource instanceof \Thelia\Model\ProfileResource) {
         return $this->addUsingAlias(ResourceTableMap::ID, $profileResource->getResourceId(), $comparison);
     } elseif ($profileResource instanceof ObjectCollection) {
         return $this->useProfileResourceQuery()->filterByPrimaryKeys($profileResource->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByProfileResource() only accepts arguments of type \\Thelia\\Model\\ProfileResource or Collection');
     }
 }