Ejemplo n.º 1
0
  public static function afficherPetitTableauDesCreneaux($options = NULL){
    $_color = isset($options["couleur"]) ? $options["couleur"] : 'red';
    $_background = isset($options["background"]) ? $options["background"] : 'silver';

    $criteria = new Criteria();
    $tab_creneaux = EdtCreneauPeer::getAllCreneauxOrderByTime();

    $aff_creneaux = '<table><tr>';
    foreach ($tab_creneaux as $creneaux){
      // S'il s'agit d'un créneau de cours, on l'affiche
      if ($creneaux->getTypeCreneau() == 'cours'){
        $aff_creneaux .= '
                    <td style="color: '.$_color.'; font-weight: bold; background-color: '.$_background.';">' . $creneaux->getNomCreneau() . '</td>';
      }
    }
    $aff_creneaux .= '</tr></table>';
    return $aff_creneaux;
  }