prestation/Vue/Infossassureur/index.php
2025-12-05 10:42:46 +00:00

44 lines
1.3 KiB
PHP
Executable File

<?php
$this->titre = "INTER-SANTE - Infos Assureur";
?>
<script type="text/javascript">
</script>
<legend> <?= _("CONTACTS DE L'ASSUREUR")?> </legend>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th style="text-align:center"> <?= _("Nom") ?> </th>
<th style="text-align:center"> <?= _("Prénoms") ?> </th>
<th style="text-align:center"> Tel </th>
<th style="text-align:center"> E-mail </th>
<th style="text-align:center"> <?= _("Fonction") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($infossassureurs as $infossassureur):
if (isset($_SESSION['p_lang']) && $_SESSION['p_lang']=="en_US")
{
$fonction = $this->nettoyer($infossassureur['fonctionEng']);
}
else
{
$fonction = $this->nettoyer($infossassureur['fonction']);
}
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($infossassureur['nom'])?> </td>
<td align='center'> <?= $this->nettoyer($infossassureur['prenoms'])?> </td>
<td align='center'> <?= $this->nettoyer($infossassureur['telephone'])?> </td>
<td align='center'> <?= $this->nettoyer($infossassureur['email'])?> </td>
<td align='center'> <?= $fonction ?> </td>
<?php endforeach; ?>
</tbody>
</table>