45 lines
1.3 KiB
PHP
Executable File
45 lines
1.3 KiB
PHP
Executable File
<?php
|
|
$effectif_statut = $populationstatut['population'];
|
|
|
|
|
|
$statut = $lienParente['libelle'];
|
|
if (est_anglophone())
|
|
{
|
|
$statut = $lienParente['libelleEng'];
|
|
}
|
|
?>
|
|
<INPUT class="sr-only" TYPE="text" id="popstatut" name="popstatut" value="<?= $effectif_statut ?>">
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" style='text-align:center'> <?= _("Garanties") ?> </th>
|
|
<?php $nbGarantie = count($garanties_lien_parente);?>
|
|
<INPUT class="sr-only" id="nbGarantie" NAME="nbGarantie" TYPE="text" value="<?=$nbGarantie?>">
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php
|
|
foreach ($garanties_lien_parente as $garantiebase):
|
|
$idGarbase = $this->nettoyer($garantiebase['id']);
|
|
$codeGarantie = $this->nettoyer($garantiebase['codeGarantie']);
|
|
$codeLienParente = $this->nettoyer($garantiebase['codeLienParente']);
|
|
$garantie = $this->nettoyer($garantiebase['garantie']);
|
|
$plafondModifiable = $this->nettoyer($garantiebase['plafondModifiable']);
|
|
|
|
if (est_anglophone())
|
|
{
|
|
$garantie = $this->nettoyer($garantiebase['garantieEng']);
|
|
}
|
|
//echo $idGarbase;
|
|
?>
|
|
|
|
<tr valign="top">
|
|
<td align="center"><?= $garantie ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|