a
This commit is contained in:
parent
7bbd07d1d0
commit
a1c0f00bc7
|
|
@ -207,10 +207,40 @@
|
|||
{
|
||||
$lienParente = $this->nettoyer($beneficiaire['LienParente']);
|
||||
}
|
||||
|
||||
$faceRegistered = $this->nettoyer($beneficiaire['faceRegistered']);
|
||||
$lienPhoto = $this->nettoyer($beneficiaire['lienPhoto']);
|
||||
|
||||
// vérifier que la photo du bénéficiaire existe
|
||||
$photo = "";
|
||||
$photoAssureCrypte = "";
|
||||
|
||||
if($faceRegistered == "1" && $lienPhoto>" ")
|
||||
{
|
||||
$photo = $_SESSION['dossierPhoto_C'].$_SESSION['dossierSociete'].'/Photos/'.$lienPhoto;
|
||||
|
||||
$photoAssureCrypte = $photo;
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
<tr onclick="javascript:selectionner_beneficiaire(<?= $idBeneficiaire ?>,'<?= $numeroBeneficiaire ?>');"
|
||||
ondblclick="javascript:afficher_beneficiaire_id();" valign="top">
|
||||
|
||||
<td align="center" style="position: relative; z-index: 1;">
|
||||
<?php if($faceRegistered == "1"): ?>
|
||||
<div class="photo-zoom-container" style="display: inline-block;">
|
||||
<img class="photoId rounded-circle photo-zoom"
|
||||
src="<?=$photoAssureCrypte?>"
|
||||
alt="<?= _("Photo Bénéficiaire") ?>"
|
||||
>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="photo-zoom-container" style="display: inline-block;">
|
||||
<i class="fas fa-user-circle photo-vide"></i>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
|
||||
<td
|
||||
align="center"> <input type="button" value="<?= $numeroBeneficiaire ?>"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user