?> </td> <td> <?php if ($type->getRetardBulletin() == AbsenceEleveType::RETARD_BULLETIN_VRAI) { echo "<img src='../../images/enabled.png' width='20' height='20' title='oui' alt='oui' />"; } //else if ($type->getRetardBulletin() == AbsenceEleveType::MANQU_OBLIG_PRESE_FAUX) { echo "<img src='../../images/disabled.png' width='20' height='20' title='oui' alt='non' />"; } else { echo "<img src='../../images/disabled.png' width='20' height='20' title='non' alt='non' />"; } ?> </td> <td><?php if ($type->getModeInterface() != AbsenceEleveType::MODE_INTERFACE_NON_PRECISE) {echo $type->getModeInterfaceDescription();} ?></td> <td><?php if ($type->getAbsenceEleveLieu() != null) {echo $type->getAbsenceEleveLieu()->getNom();} ?></td> <td><?php foreach ($type->getAbsenceEleveTypeStatutAutorises() as $statut_saisie) { echo $statut_saisie->getStatut(); echo " "; } ?></td> <td><a href="admin_types_absences.php?action=modifier&id=<?php echo $type->getId(); echo add_token_in_url();?>"><img src="../../images/icons/configure.png" title="Modifier" border="0" alt="" /></a></td> <td><a href="admin_types_absences.php?action=supprimer&id=<?php echo $type->getId(); echo add_token_in_url();?>" onClick="return confirm('Etes-vous sûr de vouloir supprimer ce type ?')"><img src="../../images/icons/delete.png" width="22" height="22" title="Supprimer" border="0" alt="" /></a></td> <td><a href="admin_types_absences.php?action=monter&id=<?php echo $type->getId(); echo add_token_in_url();?>"><img src="../../images/up.png" width="22" height="22" title="monter" border="0" alt="" /></a></td> <td><a href="admin_types_absences.php?action=descendre&id=<?php echo $type->getId(); echo add_token_in_url();?>"><img src="../../images/down.png" width="22" height="22" title="descendre" border="0" alt="" /></a></td> </tr> <?php } ?> </table> <br/><br/> </div> <?php echo check_sortable_rank_trouble('a_types', 'types'); require("../../lib/footer.inc.php"); ?>
/** * Exclude object from result * * @param AbsenceEleveType $absenceEleveType Object to remove from the list of results * * @return AbsenceEleveTypeQuery The current query, for fluid interface */ public function prune($absenceEleveType = null) { if ($absenceEleveType) { $this->addUsingAlias(AbsenceEleveTypePeer::ID, $absenceEleveType->getId(), Criteria::NOT_EQUAL); } return $this; }
/** * Declares an association between this object and a AbsenceEleveType object. * * @param AbsenceEleveType $v * @return AbsenceEleveTraitement The current object (for fluent API support) * @throws PropelException */ public function setAbsenceEleveType(AbsenceEleveType $v = null) { if ($v === null) { $this->setATypeId(NULL); } else { $this->setATypeId($v->getId()); } $this->aAbsenceEleveType = $v; // Add binding for other direction of this n:n relationship. // If this object has already been added to the AbsenceEleveType object, it will not be re-added. if ($v !== null) { $v->addAbsenceEleveTraitement($this); } return $this; }
/** * Filter the query by a related AbsenceEleveType object * * @param AbsenceEleveType|PropelCollection $absenceEleveType The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return AbsenceEleveTraitementQuery The current query, for fluid interface */ public function filterByAbsenceEleveType($absenceEleveType, $comparison = null) { if ($absenceEleveType instanceof AbsenceEleveType) { return $this ->addUsingAlias(AbsenceEleveTraitementPeer::A_TYPE_ID, $absenceEleveType->getId(), $comparison); } elseif ($absenceEleveType instanceof PropelCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this ->addUsingAlias(AbsenceEleveTraitementPeer::A_TYPE_ID, $absenceEleveType->toKeyValue('PrimaryKey', 'Id'), $comparison); } else { throw new PropelException('filterByAbsenceEleveType() only accepts arguments of type AbsenceEleveType or PropelCollection'); } }