alpha_full/pages/produits/produits.notice.php
2026-04-06 22:58:51 +02:00

16 lines
692 B
PHP
Executable File

<?php
$nomFicAppelant = basename(__FILE__);
if (($lienNotice!="") && ($lienNotice!="-")) {
echo '<div style="grid-column:1 / span 2;height:800px;" >';
echo '<div style="text-align:center;" class="msgCatalogue"> Notice pour ' .$nomPrd. '<br><br></div>';
echo '<iframe style="width:99.9%;height:100%;" src="' .$lienNotice. '#toolbar=1&navpanes=1" ><iframe>';
// echo '<embed src="' .$lienNotice. '" width="99.9%" height="99.9%" type="application/pdf"/>';
echo '</div>';
}
else {
// flag edt : traduction + fonction Item a faire ici
echo '<div style="grid-column:1 / span 2;height:800px;" >';
echo '<br>Pas de notice pour ce produit';
echo '</div>';
}
?>