Exemplo n.º 1
0
 /**
  * Filter the query by a related \keeko\core\model\Activity object
  *
  * @param \keeko\core\model\Activity|ObjectCollection $activity the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildActivityObjectQuery The current query, for fluid interface
  */
 public function filterByActivityRelatedByObjectId($activity, $comparison = null)
 {
     if ($activity instanceof \keeko\core\model\Activity) {
         return $this->addUsingAlias(ActivityObjectTableMap::COL_ID, $activity->getObjectId(), $comparison);
     } elseif ($activity instanceof ObjectCollection) {
         return $this->useActivityRelatedByObjectIdQuery()->filterByPrimaryKeys($activity->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByActivityRelatedByObjectId() only accepts arguments of type \\keeko\\core\\model\\Activity or Collection');
     }
 }
Exemplo n.º 2
0
 /**
  * Filter the query by a related \gossi\trixionary\model\Skill object
  *
  * @param \gossi\trixionary\model\Skill|ObjectCollection $skill the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildObjectQuery The current query, for fluid interface
  */
 public function filterBySkill($skill, $comparison = null)
 {
     if ($skill instanceof \gossi\trixionary\model\Skill) {
         return $this->addUsingAlias(ObjectTableMap::COL_ID, $skill->getObjectId(), $comparison);
     } elseif ($skill instanceof ObjectCollection) {
         return $this->useSkillQuery()->filterByPrimaryKeys($skill->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterBySkill() only accepts arguments of type \\gossi\\trixionary\\model\\Skill or Collection');
     }
 }