diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:10:17 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:10:17 +0200 |
commit | 1269889704386de951d7f91eb169eb1e1bb36cc0 (patch) | |
tree | ff0b0fbcf5d6cc6cb769ef25924721e348f339a5 /appli_3_alpha_old/index.php | |
parent | c93c261a461c9a2359bdcd75f7136fcb05237106 (diff) | |
download | 2007-AWOR-1269889704386de951d7f91eb169eb1e1bb36cc0.tar.gz 2007-AWOR-1269889704386de951d7f91eb169eb1e1bb36cc0.tar.bz2 2007-AWOR-1269889704386de951d7f91eb169eb1e1bb36cc0.zip |
Sous-dossier app entre old4 et old5
Diffstat (limited to 'appli_3_alpha_old/index.php')
-rw-r--r-- | appli_3_alpha_old/index.php | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/appli_3_alpha_old/index.php b/appli_3_alpha_old/index.php deleted file mode 100644 index 8356264..0000000 --- a/appli_3_alpha_old/index.php +++ /dev/null @@ -1,116 +0,0 @@ -<?php -require('include/ludo/session_verify.inc.php'); -require_once('include/ludo/html_elements.inc.php'); -generate_html_doctype_and_head("Modèle"); -echo "<body>\n"; -generate_html_divs_menu(); -?> - <div id="sous_menu"> - <p class="arbre"> - > <a href="index.php">Accueil</a> - > <a href="index.php">Réunions</a> - > Liste des réunions - </p> - </div> -<?php -generate_html_div_help(); -?> - <div id="contenu"> -<?php - $idP= $_SESSION['session_idP']; - if ( isset( $_SESSION['session_prenomP'] ) && isset( $_SESSION['session_prenomP'] ) ) - { $nom=$_SESSION['session_prenomP'] . ' ' . $_SESSION['session_nomP']; } - else { $nom = $_SESSION['loginP']; } - - echo "Bonjour $nom, nous sommes le " . date('d/m/Y') . ' et il est ' . date('H:i'); - //~ echo "<pre>DEBUG : SESSION :\n"; - //~ print_r($_SESSION); - //~ echo "\nDEBUG : REQUEST :\n"; - //~ print_r($_REQUEST); - //~ echo "</pre>"; -?> - <br/><br/> - <a href="details_reunion.php?action=creer_reunion">Organiser une réunion</a> - <br/><br/> - <table class="listeReunions" summary="Liste des réunions vous concernant"> - <tr> - <th>Objet</th> - <th>Organisateur</th> - <th>Date</th> - <th>Etat</th> - <th>Détails</th> - </tr> -<?php - // Connexion à la base et sélection de la database - require_once 'include/connect.inc.php'; - - function fill_array_liste_reunion($query) - { - if ( ! $result = @mysql_query($query) ) - { - require_once('fonctions.inc.php'); - $errmsg=mysql_generate_errmsg(); - } - else - { - // On écrit ligne à ligne les personnes et les disponibilités - while ( list($idR, $objetR, $nomP, $prenomP, $dateR) = mysql_fetch_array($result) ) - { - // Boucle sur chaque personne - echo " <tr>\n"; - echo ' <td><a href="details_reunion.php?idR=' . $idR . '">' . "$objetR</a></td>\n"; - echo " <td>$prenomP $nomP</td>\n"; - $dateStr=''; - $stateStr='En préparation'; - if ( isset($dateR) ) - { - $dateStr=date('d/m/Y \à H:i', $dateR); - if ( $dateR > time() ) - { - $stateStr='Fixée'; - } - else - { - $stateStr='Passée'; - } - } - echo " <td>$dateStr</td>\n"; - echo " <td>$stateStr</td>\n"; - echo ' <td>'; - generate_html_reunion_detail_button($idR); - echo "</td>\n"; - echo " </tr>\n"; - } - } - } - - - // Réunions fixées et passées - $query = 'SELECT DISTINCT R.idR, R.objetR, P.nomP, P.prenomP, UNIX_TIMESTAMP(C.dateHeure)' - . ' FROM Liste L,Reunion R,Appartenir A,Creneau C,Personne P' - . " WHERE ((A.idP = $idP AND A.idL = L.idL) OR R.idP_Orga = $idP)" - . ' AND R.idL = L.idL AND P.idP = R.idP_Orga AND R.idC_Fixe = C.idC' - . ' ORDER BY C.dateHeure DESC;'; - fill_array_liste_reunion($query); - - // Réunion en préparation - $query = 'SELECT DISTINCT R.idR, R.objetR, P.nomP, P.prenomP, NULL' - . ' FROM Liste L,Reunion R,Appartenir A,Personne P' // Creneau C, - . " WHERE ((A.idP = $idP AND A.idL = L.idL) OR R.idP_Orga = $idP)" - . ' AND R.idL = L.idL AND P.idP = R.idP_Orga AND ISNULL(R.idC_Fixe);'; - //echo "DEBUG : $query\n"; - fill_array_liste_reunion($query); - - //$query = - //echo "DEBUG : $query\n"; -?> - </table> - <br/> - <a href="details_reunion.php?action=creer_reunion">Organiser une réunion</a> - </div> -<?php - if ( isset ($errmsg) ) { generate_html_div_errmsg($errmsg); } -?> -</body> -</html> - |