145 lines
5.7 KiB
PHP
145 lines
5.7 KiB
PHP
<!-- v_unPompier.php / Derniere modification le 18 septembre 2023 par Pascal Blain -->
|
|
<div id="contenu">
|
|
<?php
|
|
/**
|
|
* Boutons d'action a coté du nom
|
|
* *lesInfosPompiers = pdo->getInfosPompier());
|
|
*/
|
|
if ($_REQUEST['action'] == "supprimer") {
|
|
echo '<h2>SUPPRESSION DU POMPIER ' . $lesInfosPompier['nom'] . ' ' . $lesInfosPompier['prenom'] . '</h2>';
|
|
echo (
|
|
'<form name="frmA" action="index.php?choixTraitement=pompiers&action=validerSupprimer&type='
|
|
. $lesInfosPompier['pType']
|
|
. '&agent=' . $lesInfosPompier['id']
|
|
. '&caserne=' . $lesInfosPompier['pCis']
|
|
. '" method="post">');
|
|
}
|
|
if ($_REQUEST['action'] == "modifier") {
|
|
echo ('
|
|
<h2>MODIFICATION DU POMPIER '
|
|
. $lesInfosPompier['nom'] . ' '
|
|
. $lesInfosPompier['prenom'] . '</h2>'
|
|
);
|
|
echo ('
|
|
<form name="frmA" action="index.php?choixTraitement=pompiers&action=validerModifier&type='
|
|
. $lesInfosPompier['wType'] . '&agent='
|
|
. $lesInfosPompier['id']
|
|
. '&caserne=' . $lesInfosPompier['pCis']
|
|
. '" method="post">'
|
|
);
|
|
}
|
|
if ($_REQUEST['action'] == "ajouter") {
|
|
echo "<h2>AJOUT D'UN NOUVEAU POMPIER</h2>";
|
|
|
|
//action = index.php?choixTraitement=pompiers&action=validerAjouter&type=''
|
|
//onsubmit="return valider(this)">
|
|
echo('
|
|
<form class="dataPompierAjout" name="frmA" action="index.php?choixTraitement=pompiers&action=validerAjouter&type="
|
|
method="post"
|
|
');
|
|
echo ("
|
|
<table style='border: 0px solid white;'>
|
|
<tr>
|
|
<td style='border :0px;'>
|
|
<fieldset><legend>Coordonnées</legend>
|
|
<table>
|
|
");
|
|
if ($_REQUEST['action'] == "supprimer") { //-------------------------------------------------------- cas suppression
|
|
echo ("
|
|
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
|
<table style='border: 0px solid white;'>
|
|
<tr>
|
|
|
|
</tr>
|
|
</table>
|
|
");
|
|
}
|
|
//------------------------------------------------------------------------------------ cas ajout ou modification
|
|
|
|
if ($_REQUEST['action'] == "modifier") {
|
|
echo (" <tr>
|
|
</tr>
|
|
</table>
|
|
");
|
|
}
|
|
if ($_REQUEST['action'] == "ajouter") {
|
|
// <input name='pId' class='infoPompier' value='" . $lesInfosPompier['id'] . "' >
|
|
|
|
echo ("
|
|
<tr><th style='width:130px;'>Nom*</th> <td style='width:130px;'><input name='ztNom' id='newName' type='text' class='infoPompier' required></td> </tr>
|
|
<tr><th>Prénom*</th> <td> <input name='ztPrenom' id='newUsername' type='text' class='infoPompier infoPompier-chef' required></td> </tr>
|
|
<tr><th>Adresse</th> <td> <input name='ztAdresse' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
|
<tr><th>Code postal</th> <td> <input name='ztCodePostal' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
|
<tr><th>Ville</th> <td> <input name='ztVille' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
|
<tr><th>Téléphone*</th> <td> <input name='ztTel' type='text' class='infoPompier-chef' required></td> </tr>
|
|
<tr><th>Adresse électronique*</th> <td> <input name='ztMail' type='text' class='infoPompier infoPompier-chef' required></td> </tr>
|
|
<tr><th>Nom de compte*</th> <td><input name='ztLogin' id='newLogin' type='text' class='infoPompier infoPompier-chef' required></td></tr>
|
|
<tr><th style='width:130px;'>Code</th> <td><input name='zCis' id='inputDisabled' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['pCis'] . "' disabled></td> </tr>
|
|
<tr><th>Nom</th> <td>" . $lesInfosPompier['cNom'] . "</td> </tr>
|
|
<tr><th>Adresse</th> <td>" . $lesInfosPompier['cAdresse'] . "</td> </tr>
|
|
<tr><th>Téléphone</th> <td>" . $lesInfosPompier['cTel'] . "</td> </tr>
|
|
<tr><th>Groupement</th> <td>" . $lesInfosPompier['cGroupement'] . "</td> </tr>
|
|
|
|
<tr><th>Type</th> <td>
|
|
<select name='lstType' class='infoPompier-chef'>");
|
|
foreach ($pdo->getParametre('typePer') as $key => $value) {
|
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
|
}
|
|
echo ("</td> </tr>
|
|
<tr><th>Grade</th> <td>
|
|
<select name='lstGrade' class='infoPompier-chef'>");
|
|
foreach ($pdo->getParametre('grade') as $key => $value) {
|
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
|
}
|
|
|
|
|
|
echo ("</td> </tr>
|
|
|
|
<tr><th>Statut</th> <td>
|
|
<select name='lstStatut' class='infoPompier-chef'>");
|
|
foreach ($pdo->getParametre('statAgt') as $key => $value) {
|
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
|
}
|
|
|
|
|
|
echo ("</td> </tr>
|
|
<br />");
|
|
|
|
echo ("
|
|
</td> </tr>
|
|
</table>
|
|
</fieldset></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<fieldset><legend>Observations</legend>
|
|
<table style='border: 0px solid white;'>
|
|
<tr>
|
|
<td> <input name='ztObservation' type='text' class='infoPompier' value='" . $lesInfosPompier['pCommentaire'] . "' ></td></td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
<div style='text-align:center; '>
|
|
<p class='notif-ajout' style:'margin: 10px'></p>
|
|
<input type= 'image' class='btAnnulerAjout' alt='Annuler' src= 'images/Annuler.jpg'>
|
|
<input type= 'image' class='validerAjout' alt='Valider' src= 'images/Valider.jpg'>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<input type='image' class='btn-valid-modif' id='validModif' title='Modifier' src='images/valider.jpg' style='display:none; margin: 0 auto;'>
|
|
");
|
|
}
|
|
}
|
|
?>
|
|
<table style='border: 0px solid white; '>
|
|
<tr>
|
|
<td style='border: 0px solid white; witdh:130px; text-align:right;'>
|
|
<input type="hidden" name="zTypeAdm"
|
|
value="">
|
|
<? // if ($type=="adm") {echo ("true");} else {echo ("false");} ?>
|
|
<input type="hidden" name="zOk" value="OK">
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|