Exemplo n.º 1
0
 public static function affiche_choix_gestion_groupes_responsables($choix_group, $choix_resp, $onglet)
 {
     $PHP_SELF = $_SERVER['PHP_SELF'];
     $session = session_id();
     $return = '';
     if ($choix_group != "") {
         $return .= \admin\Fonctions::affiche_gestion_groupes_responsables($choix_group, $onglet);
     } elseif ($choix_resp != "") {
         $return .= \admin\Fonctions::affiche_gestion_responsable_groupes($choix_resp, $onglet);
     } else {
         $return .= '<div class="row">';
         $return .= '<div class="col-md-6">';
         $return .= \admin\Fonctions::affiche_choix_groupes_responsables();
         $return .= '</div>';
         $return .= '<div class="col-md-6">';
         $return .= \admin\Fonctions::affiche_choix_responsable_groupes();
         $return .= '</div>';
         $return .= '</div>';
     }
     return $return;
 }