radiantprestation/Vue/Autresprestations/index.php

18 lines
612 B
PHP

<?php
$this->titre = "INTER-SANTE - "._("Autres Prestations");
$pharmacieInterne = $_SESSION['p_pharmacieInterne_C'];
$optiqueInterne = $_SESSION['p_optiqueInterne_C'];
?>
<h2> <?= _("AUTRES PRESTATIONS") ?> </h2>
<div class="row">
<ul>
<?php if($pharmacieInterne=="1") : ?>
<h1><li><a href="javascript:actualiser_pharmacien();"> <?= _("Pharmacie Interne") ?> </a></li></h1>
<?php endif; ?>
<?php if($optiqueInterne=="1") : ?>
<h1><li><a href="javascript:actualiser_opticien();"> <?= _("Lunetterie Interne") ?> / Internal Eyewear </a></li></h1>
<?php endif; ?>
</ul>
</div>