/** * Filter the query by a related Classe object * * @param Classe|PropelCollection $classe The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return AbsenceEleveSaisieQuery The current query, for fluid interface */ public function filterByClasse($classe, $comparison = null) { if ($classe instanceof Classe) { return $this ->addUsingAlias(AbsenceEleveSaisiePeer::ID_CLASSE, $classe->getId(), $comparison); } elseif ($classe instanceof PropelCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this ->addUsingAlias(AbsenceEleveSaisiePeer::ID_CLASSE, $classe->toKeyValue('PrimaryKey', 'Id'), $comparison); } else { throw new PropelException('filterByClasse() only accepts arguments of type Classe or PropelCollection'); } }
/** * Declares an association between this object and a Classe object. * * @param Classe $v * @return JScolClasses The current object (for fluent API support) * @throws PropelException */ public function setClasse(Classe $v = null) { if ($v === null) { $this->setIdClasse(NULL); } else { $this->setIdClasse($v->getId()); } $this->aClasse = $v; // Add binding for other direction of this n:n relationship. // If this object has already been added to the Classe object, it will not be re-added. if ($v !== null) { $v->addJScolClasses($this); } return $this; }
/** * Exclude object from result * * @param Classe $classe Object to remove from the list of results * * @return ClasseQuery The current query, for fluid interface */ public function prune($classe = null) { if ($classe) { $this->addUsingAlias(ClassePeer::ID, $classe->getId(), Criteria::NOT_EQUAL); } return $this; }