/** * Filter the query by a related Eleve object * * @param Eleve|PropelCollection $eleve The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ResponsableInformationQuery The current query, for fluid interface */ public function filterByEleve($eleve, $comparison = null) { if ($eleve instanceof Eleve) { return $this ->addUsingAlias(ResponsableInformationPeer::ELE_ID, $eleve->getEleId(), $comparison); } elseif ($eleve instanceof PropelCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this ->addUsingAlias(ResponsableInformationPeer::ELE_ID, $eleve->toKeyValue('PrimaryKey', 'EleId'), $comparison); } else { throw new PropelException('filterByEleve() only accepts arguments of type Eleve or PropelCollection'); } }
/** * Declares an association between this object and a Eleve object. * * @param Eleve $v * @return ResponsableInformation The current object (for fluent API support) * @throws PropelException */ public function setEleve(Eleve $v = null) { if ($v === null) { $this->setEleId(NULL); } else { $this->setEleId($v->getEleId()); } $this->aEleve = $v; // Add binding for other direction of this n:n relationship. // If this object has already been added to the Eleve object, it will not be re-added. if ($v !== null) { $v->addResponsableInformation($this); } return $this; }