diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:05:02 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:05:02 +0200 |
commit | 71b503f07007346eda3d1da71d4a64f31f13d846 (patch) | |
tree | 3d1aaa880857eb05e7e9c1f2d75f309507dd9c07 /appli_3_alpha_old/include/ju.inc.php | |
parent | 756f0fa75c7d8e18188dffdfbdd4416651dca9fe (diff) | |
download | 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.gz 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.bz2 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.zip |
Prmère version alpha 2007-02-03+09:07:04 - 2007-02-06+12:19:50
Diffstat (limited to 'appli_3_alpha_old/include/ju.inc.php')
-rw-r--r-- | appli_3_alpha_old/include/ju.inc.php | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/appli_3_alpha_old/include/ju.inc.php b/appli_3_alpha_old/include/ju.inc.php new file mode 100644 index 0000000..1a03ca9 --- /dev/null +++ b/appli_3_alpha_old/include/ju.inc.php @@ -0,0 +1,80 @@ +<?php + function traiter_formulaire_cequetuveux_aussi() + { + echo "coucou\n"; + } + + function generate_html_reunion_commentaires($idR) + { +?> + <table cellspacing="0" class="commentaires"> + <thead> + <tr> + <th>Commentaires <a href="#">(Editer votre commentaire)</a></th> + </tr> + </thead> + <tr> + <td>Ludo : J'ai monté le DC sur lequel sera basé le SNI</td> + </tr> + <tr> + <td>Jérémie : J'ai fais une première ebauche du DC</td> + </tr> + </table> +<?php + } + + + function generate_html_reunion_fichiers($idR) + { +?> +<table cellspacing="0" class="fichiers"> + <thead> + <tr> + <th>Fichiers attachés <a href="#popfichier" class="pop">(Ajouter un fichier)</a></th> + </tr> + </thead> + <tr> + <td><a href="compte-rendu.txt">compte-rendu.txt</a></td> + </tr> + <tr> + <td><a href="photos-ru.jpg">photos-ru.jpg</a></td> + </tr> +</table> +<?php + } + + + function generate_html_reunion_detail($idR) + { +?> + <table cellspacing="0" class="detail_reunion"> + <thead> + <tr> + <th>Détails de la réunion </th> + <th> </th> + </tr> + </thead> + <tr> + <td><strong>Objet : </strong></td> + <td>Détails stages NEWI</td> + </tr> + <tr> + <td><strong>Organisateur : </strong></td> + <td>Mme Verdier</td> + </tr> + <tr> + <td><strong>Lieu : </strong></td> + <td>Salle 209 </td> + </tr> + <tr> + <td><strong>Ordre du jour : </strong></td> + <td>Le logement, le séjour, les contacts</td> + </tr> + <tr> + <td><strong>Remarque :</strong></td> + <td>aucune</td> + </tr> + </table> +<?php + } +?>
\ No newline at end of file |