414 lines
19 KiB
PHP
Executable File
414 lines
19 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER SANTE - Prestations";
|
|
$datejour = $this->datejour;
|
|
$estcouvert = ($_SESSION['dateEcheancePolice_C']>=$datejour);
|
|
|
|
$_SESSION['nbTentative'] = "0";
|
|
|
|
$age = $beneficiaire['ageBeneficiaire'];
|
|
$estidentifiable = ($age>6);
|
|
$estsubstitue = ($_SESSION['idSubstitut_C']>0);
|
|
|
|
$dateSortieBeneficiaire = $this->nettoyer($beneficiaire['dateSortieBeneficiaire']);
|
|
|
|
$estsorti = false;
|
|
if($dateSortieBeneficiaire>"2000-01-01")
|
|
{
|
|
$estsorti = ($dateSortieBeneficiaire<=$datejour);
|
|
$estcouvert = ($estcouvert && ($dateSortieBeneficiaire>$datejour));
|
|
}
|
|
|
|
$dateEffetCouvert = $_SESSION['dateEffetCouvert'];
|
|
|
|
$faceRegistered = $this->nettoyer($beneficiaire['faceRegistered']);
|
|
$face_confirmee = $_SESSION['okId_face'];
|
|
$fingerActif = $_SESSION['fingerActif'];
|
|
$faceActif = $_SESSION['faceActif'];
|
|
|
|
$vip = $beneficiaire['vip'];
|
|
$styleVip = ($vip=='1') ? 'color:red; font-size:10pt;' : '';
|
|
$styleVipLegende = ($vip=='1') ? 'color:red;' : '';
|
|
|
|
$strVip = ($vip=='1') ? ' [VIP]' : '';
|
|
|
|
$imgData = $_SESSION['photoAssureCrypte'];
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<INPUT class="sr-only" TYPE="text" id="dateEntreeBeneficiaire" NAME="dateEntreeBeneficiaire" value="<?= dateLang($this->nettoyer($beneficiaire['dateEntreeBeneficiaire'])) ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="tm" NAME="tm" value="<?= $beneficiaire['tm'] ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="finger_id_C" name="finger_id_C" value="<?= $_SESSION['finger_id_C'] ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="faceRegistered" name="faceRegistered" value="<?= $faceRegistered ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="prestationPossible" name="prestationPossible" value="<?= $prestationPossible ?>" >
|
|
|
|
<legend ><?= _("Informations sur le Bénéficiaire") .$strVip." : (" . $beneficiaire['numeroBeneficiaire'] . ") => " . _("Date Effet") . " : " . dateLang($this->nettoyer($beneficiaire['dateEffetBeneficiaire'])) ?></legend>
|
|
|
|
<button class="sr-only" id="btn_pop_save_face" name="btn_pop_save_face" type="button" data-bs-toggle="modal" data-bs-target="#pop_rec_faciale" > </button>
|
|
|
|
<div id="div_urlFace">
|
|
<input class="sr-only" type="text" id="urlFace" name="urlFace" value="">
|
|
</div>
|
|
|
|
<div id="div_wait_face">
|
|
|
|
</div>
|
|
|
|
<?php if ($faceActif=='1') : ?>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<?php if ($faceRegistered=="1") : ?>
|
|
<tr>
|
|
|
|
<td>
|
|
<button style='font-size:15pt; width:100%' type="button" class="btn btn-primary" onClick="javascript:ebene_init_confirm_photo_face();">
|
|
<i class="fa fa-camera" aria-hidden="true"></i> <?= _("CONFIRMER LA FACE") ?>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td >
|
|
<button style='font-size:15pt; width:100%' type="button" class="btn btn-primary" onClick="javascript:ebene_init_photo_face();">
|
|
<i class="fa fa-camera" aria-hidden="true"></i> <?= _("ENREGISTRER LA FACE") ?>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php endif; ?>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td rowspan="8">
|
|
<div class="photo-container">
|
|
<?php if ($faceRegistered=="1") : ?>
|
|
<img src="data:image/jpg;base64,<?=$imgData?>" style="width: 100px; cursor:pointer;" data-bs-toggle="modal" data-bs-target="#pop_photo">
|
|
<?php endif; ?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%"> <?= _("No Bénéficiaire") ?> </td>
|
|
<td width="24%" ><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="nomBeneficiaire" NAME="nomBeneficiaire" value="<?= $beneficiaire['nomBeneficiaire'] ?>" readonly ></td>
|
|
|
|
<td width="10%" align="center"> <?= _("Prénoms") ?> </td>
|
|
<td width="24%" ><INPUT class="form-control" style="<?= $styleVip ?>" TYPE="text" id="prenomsBeneficiaire" NAME="prenomsBeneficiaire" value="<?= $beneficiaire['prenomsBeneficiaire'] ?>" readonly ></td>
|
|
|
|
<td width="10%" align="center"> <?= _("Couverture") ?> </td>
|
|
<?php if ($estcouvert) : ?>
|
|
<td width="22%" align="center" style='font-size:10pt; background-color:#027BE3;color:white;'> <?= dateLang($this->nettoyer($beneficiaire['dateEntreeBeneficiaire'])).' - '.dateLang($_SESSION['dateEcheancePolice_C']) ?> </td>
|
|
<?php else: ?>
|
|
<td width="22%" align="center" style='font-size:10pt; background-color:red;color:white;'> <?= dateLang($this->nettoyer($beneficiaire['dateEntreeBeneficiaire'])).' - '.dateLang($_SESSION['dateEcheancePolice_C']) ?> </td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("No Famille") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" value="<?= $beneficiaire['numeroAdherent'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Lien Parenté") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="lienparente" name="lienparente" value="<?= $beneficiaire['lienparente'] ?>" readonly style="<?= $styleVip ?>"></td>
|
|
|
|
<td align="center"> <?= _("Naissance") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="dateNaissance" NAME="dateNaissance" value="<?= dateLang($this->nettoyer($beneficiaire['dateNaissance'])).' => '.$beneficiaire['ageBeneficiaire'].' ans' ?>" readonly></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><?= _("Genre") ?></td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="sexe" name="sexe" value="<?= $beneficiaire['sexe'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Groupe Sanguin") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="codeGroupeSanguin" name="codeGroupeSanguin" value="<?= $beneficiaire['codeGroupeSanguin'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Nature Pièce") ?></td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="naturepiece" name="naturepiece" value="<?= $beneficiaire['naturepiece'] ?>" readonly ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><?= _("No Pièce") ?></td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="numeroPiece" NAME="numeroPiece" value="<?= $beneficiaire['numeroPiece'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Tél. Mobile") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="tel" id="telephonePortableAdherent" NAME="telephonePortableAdherent" value="<?= $beneficiaire['telephonePortableAdherent'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Etat") ?> </td>
|
|
|
|
<?php if ($dateEffetCouvert=="0") : ?>
|
|
<td align="center" style='font-size:10pt; background-color:red;color:white;'> <?= _("Non renouvelé") ?> </td>
|
|
<?php else: ?>
|
|
<?php if ($estcouvert) : ?>
|
|
<?php if ($beneficiaire['codeEtatBeneficiaire']=="V"): ?>
|
|
<td align="center" style='font-size:10pt; background-color:#027BE3;color:white;'> <?= $beneficiaire['etatbeneficiaire']." / ".$beneficiaire['etatbeneficiaireEng'] ?> </td>
|
|
<?php else: ?>
|
|
<td align="center" style='font-size:10pt; background-color:red;color:white;'> <?= $beneficiaire['etatbeneficiaire']." / ".$beneficiaire['etatbeneficiaireEng'] ?> </td>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php if ($estsorti): ?>
|
|
<td align="center" style='font-size:10pt; background-color:red;color:white;'> <?= _("Retiré") ?> </td>
|
|
<?php else: ?>
|
|
<td align="center" style='font-size:10pt; background-color:red;color:white;'> <?= _("Expiré") ?> </td>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Sortie") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="dateSortieBeneficiaire" NAME="dateSortieBeneficiaire" value="<?= dateLang($this->nettoyer($beneficiaire['dateSortieBeneficiaire'])) ?>" readonly></td>
|
|
|
|
<td align="center">E-mail</td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="emailAdherent" NAME="emailAdherent" value="<?= $beneficiaire['emailAdherent'] ?>" readonly></td>
|
|
|
|
<td align="center"> <?= _("Ticket Modérateur") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" value="<?= $beneficiaire['tm'].' %' ?>" readonly></td>
|
|
|
|
</tr>
|
|
|
|
<tr style='background-color:white'>
|
|
<td colspan="6" height="10" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Client") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="nomClient" NAME="nomClient" value="<?= $beneficiaire['nomClient'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Tél. Client") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="tel" id="telephoneBureauClient" NAME="telephoneBureauClient" value="<?= $beneficiaire['telephoneBureauClient']." / ".$beneficiaire['telephonePortableClient'] ?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("E-mail Client") ?> </td>
|
|
<td><INPUT style="<?= $styleVip ?>" class="form-control" TYPE="text" id="emailClient" NAME="emailClient" value="<?= $beneficiaire['emailClient'] ?>" readonly ></td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_legende_couleur" style="width:100%; margin: 5px; background-color: #f8f8ff;" class="tab-container">
|
|
<table class="table-responsive" style="width:100%; margin:auto; background-color: #f8f8ff;">
|
|
<tbody>
|
|
<tr>
|
|
<td style="font-weight:bold; text-align:right; background-color: #f8f8ff; text-decoration-line: underline;"> <?= _("Légende").":"; ?></td>
|
|
<td style="font-weight:bold; text-align:right; background-color: #f8f8ff;"> <?= _("Consommation")." >= 50%"; ?></td>
|
|
<td width="1%" style="background-color: #f8f8ff"></td>
|
|
<td width="4%" style="background-color:#726a57"></td >
|
|
<td width="2%" style="background-color: #f8f8ff"></td>
|
|
<td style="font-weight:bold; text-align:right; background-color: #f8f8ff;"><?= _("Consommation")." >= 80%"; ?></td>
|
|
<td width="1%" style="background-color: #f8f8ff"></td>
|
|
<td width="4%" style="background-color: orange"></td >
|
|
<td width="1%" style="background-color: #f8f8ff"></td>
|
|
<td style="font-weight:bold; text-align:right; background-color: #f8f8ff;" ><?= _("Consommation")." = 100% / ". _("Transaction")." = 100%"; ?></td>
|
|
<td style="background-color: #f8f8ff"></td>
|
|
<td width="4%" style="background-color: red;"></td >
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="wrapper">
|
|
<div class="tabs">
|
|
<div class="tab">
|
|
<input type="radio" name="css-tabs" id="tab-1" checked class="tab-switch">
|
|
<label for="tab-1" class="tab-label"><?= _("BENEFICIAIRE") ?></label>
|
|
<div class="tab-content tab-container">
|
|
<fieldset>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt; white-space:nowrap;">
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" width="5%" style="text-align:center"> <?= _("Exercice") ?> </th>
|
|
<th rowspan="2" width="20%" style="text-align:center"> <?= _("Garantie") ?> </th>
|
|
<th rowspan="2" style="text-align:center" width="5%"> <?= _("Taux") ?> </th>
|
|
|
|
<th colspan="4" style="text-align:center"> <?= _("Consommations") ?> </th>
|
|
<th colspan="4" style="text-align:center"> <?= _("Prestations") ?> </th>
|
|
</tr>
|
|
<tr>
|
|
<th style="text-align:center" width="10%"> <?= _("Plafond") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Périodicité") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Dépenses") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Solde") ?> </th>
|
|
|
|
|
|
<th style="text-align:center" width="10%"> <?= _("Nb Transaction") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Périodicité") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Nbre Prestation") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Solde") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach ($garantieadherents as $v):
|
|
$champApplication = $this->nettoyer($v['champApplication']);
|
|
|
|
$pourcentConso = $this->nettoyer($v['pourcentConso']);
|
|
|
|
|
|
$transactionBeneficiaire = $this->nettoyer($v['transactionBeneficiaire']);
|
|
|
|
$soldeTransactionBeneficiaire = $this->nettoyer($v['soldeTransactionBeneficiaire']);
|
|
|
|
$idBeneficiaire = $this->nettoyer($v['idBeneficiaire']);
|
|
$codeGarantie = $this->nettoyer($v['codeGarantie']);
|
|
$exercieReference = $this->nettoyer($v['exercieReference']);
|
|
|
|
$plafond = format_N($this->nettoyer($v['plafond']));
|
|
|
|
$nbreTransaction = $this->nettoyer($v['nbreTransaction']);
|
|
|
|
?>
|
|
|
|
<?php if($pourcentConso>='50' && $pourcentConso<'80'): ?>
|
|
<tr style="background-color: yellow;" valign="top">
|
|
<?php elseif($pourcentConso>='80' && $pourcentConso <'100'): ?>
|
|
<tr style="background-color: orange;" valign="top">
|
|
<?php elseif($pourcentConso >='100' || $transactionBeneficiaire=="1"): ?>
|
|
<tr style="background-color: red; color:white" valign="top">
|
|
<?php else: ?>
|
|
<tr valign="top">
|
|
<?php endif; ?>
|
|
|
|
<td align='center'> <?= $this->nettoyer($v['exercieReference'])?> </td>
|
|
<td align='center'>
|
|
<?php if($pourcentConso >='95' || $transactionBeneficiaire=="1"): ?>
|
|
<a title="<?= _("Plafond ou nombre de transaction atteint pour cette garantie.") ?>" href="javascript:alert_ebene('Plafond ou nombre de transaction atteint pour cette garantie!', 'Limit or number of transactions reached for this guarantee!');">
|
|
<span style="color:blue; background-color:#eeeeee; border:1px solid #000; border-radius:3px;">
|
|
<?= $this->nettoyer($v['garantie'])?>
|
|
</span>
|
|
</a>
|
|
<?php else: ?>
|
|
<?= $this->nettoyer($v['garantie'])?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td align='center'><?= $this->nettoyer($v['tauxPlafond']).'%'; ?></td>
|
|
|
|
<td align='center' ><?= $plafond ?></td>
|
|
<td align='center'><?= $v['codePeriodicitePlafond'] ?></td>
|
|
<td align='center'><?= format_N($this->nettoyer($v['consommation'])) ?></td>
|
|
<td align='center' ><?= format_N($this->nettoyer($v['soldeGarantie'])) ?></td>
|
|
|
|
<td align='center'><?= $this->nettoyer($v['nbreTransaction']) ?></td>
|
|
<td align='center'><?= $v['codePeriodicite'] ?></td>
|
|
<td align='center'><?= $this->nettoyer($v['comptePrestation']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($v['soldeTransactionBeneficiaire']) ?></td>
|
|
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
<div class="tab">
|
|
<input type="radio" name="css-tabs" id="tab-2" class="tab-switch">
|
|
<label for="tab-2" class="tab-label"><?= _("FAMILLE") ?></label>
|
|
<div class="tab-content tab-container">
|
|
<fieldset>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt; white-space:nowrap;">
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" width="5%" style="text-align:center"> <?= _("Exercice") ?> </th>
|
|
<th rowspan="2" width="20%" style="text-align:center"> <?= _("Garantie") ?> </th>
|
|
<th rowspan="2" style="text-align:center" width="5%"> <?= _("Taux") ?> </th>
|
|
|
|
<th colspan="4" style="text-align:center"> <?= _("Consommations") ?> </th>
|
|
<th colspan="4" style="text-align:center"> <?= _("Prestations") ?> </th>
|
|
</tr>
|
|
<tr>
|
|
<th style="text-align:center" width="10%"> <?= _("Plafond") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Périodicité") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Dépenses") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Solde") ?> </th>
|
|
|
|
|
|
<th style="text-align:center" width="10%"> <?= _("Nb Transaction") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Périodicité") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Nbre Prestation") ?> </th>
|
|
<th style="text-align:center" width="10%"> <?= _("Solde") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach ($garantieadherents as $v):
|
|
$champApplication = $this->nettoyer($v['champApplication']);
|
|
|
|
$pourcentConsoFamille = $this->nettoyer($v['pourcentConsoFamille']);
|
|
|
|
$transactionFamille = $this->nettoyer($v['transactionFamille']);
|
|
|
|
$soldeTransactionFamille = $this->nettoyer($v['soldeTransactionFamille']);
|
|
|
|
$idAdherent = $this->nettoyer($v['idAdherent']);
|
|
$codeGarantie = $this->nettoyer($v['codeGarantie']);
|
|
$exercieReference = $this->nettoyer($v['exercieReference']);
|
|
|
|
$plafondFamille = format_N($this->nettoyer($v['plafondFamille']));
|
|
|
|
$nbreTransactionFamille = $this->nettoyer($v['nbreTransactionFamille']);
|
|
|
|
?>
|
|
|
|
<?php if($pourcentConsoFamille>='50' && $pourcentConsoFamille<'80'): ?>
|
|
<tr style="background-color: yellow;" valign="top">
|
|
<?php elseif($pourcentConsoFamille>='80' && $pourcentConsoFamille <'100'): ?>
|
|
<tr style="background-color: orange;" valign="top">
|
|
<?php elseif($pourcentConsoFamille >='100' || $transactionFamille=="1"): ?>
|
|
<tr style="background-color: red; color:white" valign="top">
|
|
<?php else: ?>
|
|
<tr valign="top">
|
|
<?php endif; ?>
|
|
|
|
<td align='center'> <?= $this->nettoyer($v['exercieReference'])?> </td>
|
|
<td align='center'>
|
|
<?php if($pourcentConsoFamille >='95' || $transactionFamille=="1"): ?>
|
|
<a title="<?= _("Plafond ou nombre de transaction atteint pour cette garantie.") ?>" href="javascript:alert_ebene('Plafond ou nombre de transaction atteint pour cette garantie!', 'Limit or number of transactions reached for this guarantee!');">
|
|
<span style="color:blue; background-color:#eeeeee; border:1px solid #000; border-radius:3px;">
|
|
<?= $this->nettoyer($v['garantie'])?>
|
|
</span>
|
|
</a>
|
|
<?php else: ?>
|
|
<?= $this->nettoyer($v['garantie'])?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td align='center'><?= $this->nettoyer($v['tauxPlafond']).'%'; ?></td>
|
|
|
|
<td align='center' ><?= $plafondFamille ?></td>
|
|
<td align='center'><?= $v['codePeriodicitePlafondFamille'] ?></td>
|
|
<td align='center'><?= format_N($this->nettoyer($v['consommationFamille'])) ?></td>
|
|
<td align='center' ><?= format_N($this->nettoyer($v['soldeGarantieFamille'])) ?></td>
|
|
|
|
<td align='center'><?= $this->nettoyer($v['nbreTransactionFamille']) ?></td>
|
|
<td align='center'><?= $v['codePeriodiciteFamille'] ?></td>
|
|
<td align='center'><?= $this->nettoyer($v['comptePrestationFamille']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($v['soldeTransactionFamille']) ?></td>
|
|
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if ($beneficiaire['lienPhoto']<=' '): ?>
|
|
<INPUT style="text-align: center" class="form-control" TYPE="text" value="<?= _("Aucune photo") ?>" readonly>
|
|
<?php endif; ?>
|
|
|
|
<div id="div_err">
|
|
<INPUT class="sr-only" TYPE="text" id="nbTentative" name="nbTentative" value="0">
|
|
</div>
|
|
|
|
<div id="loadingDiv" style="display: none">
|
|
<div class="ajax-mask"><div class="loading"><img src="Bootstrap/images/loading-spinner-grey.gif"/> <?= _("Veuillez patienter...") ?> </span></div></div>
|
|
</div>
|
|
|
|
<?php if($faceActif=='1') : ?>
|
|
<?php include 'faceebene/ebenetraitementimage.php'; ?>
|
|
<?php endif; ?>
|