16 lines
692 B
PHP
Executable File
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>';
|
|
}
|
|
?>
|