78 lines
3.2 KiB
PHP
Executable File
78 lines
3.2 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Fiche Utilisteur Prestataire";
|
|
|
|
$codePrestataire = $this->nettoyer($user_prestataire['codePrestataire']);
|
|
$idUtilisateur = $user_prestataire['id'];
|
|
$codeUtilisateur = $user_prestataire['codeUtilisateur'];
|
|
$actif = $user_prestataire['actif'];
|
|
$actVisible = $user_prestataire['actVisible'];
|
|
$reInit = $user_prestataire['reInit'];
|
|
$codeLangue = $user_prestataire['codeLangue'];
|
|
$AffectionVisible = $user_prestataire['AffectionVisible'];
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<input class="sr-only" type="text" id="idUtilisateur" name="idUtilisateur" value="<?= $idUtilisateur ?>" >
|
|
<input class="sr-only" type="text" id="codePrestataire" name="codePrestataire" value="<?= $codePrestataire ?>" >
|
|
|
|
<legend> <?= _("Fiche Utilisteur") . " : " . $codeUtilisateur ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Nom") ?> </td>
|
|
<td width="40%" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="nom" NAME="nom" value="<?=$this->nettoyer( $user_prestataire['nom'])?>" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="12%" align="center" > <?= _("Prenoms") ?> </td>
|
|
<td colspan="3" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="prenoms" NAME="prenoms" value="<?=$this->nettoyer( $user_prestataire['prenoms'])?>" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Prestataire") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?=$this->nettoyer( $user_prestataire['prestataire'])?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Actif?") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control" id="actif" NAME="actif" >
|
|
<?php liste_options($user_actif, $actif, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> <?= _("Actes Visibles?") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="actVisibleUser" NAME="actVisibleUser" >
|
|
<?php liste_options($user_actVisible, $actVisible, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Langue") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="codeLangueUser" NAME="codeLangueUser" >
|
|
<?php liste_options($langue, $codeLangue, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> <?= _("Affections Visibles?") ?> </td>
|
|
<td colspan="3" >
|
|
<SELECT style="font-size:10pt;" class="form-select" id="AffectionVisibleUser" NAME="AffectionVisibleUser" >
|
|
<?php liste_options($user_AffectionVisible, $AffectionVisible, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_modif_user_prestataire();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td colspan="3" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:users_prestataire();" style='font-size:9pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|