34 lines
940 B
PHP
Executable File
34 lines
940 B
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Menus par profil"; ?>
|
|
|
|
<form method="post">
|
|
<div class="row">
|
|
<div class="form-group">
|
|
<label for="codeProfil" class="col-lg-1 control-label"> <?= _("Profil") ?> </label>
|
|
<div class="col-lg-8">
|
|
<SELECT onChange="ajaxListerMenusProfil();" class="form-control" id="codeProfil" NAME="codeProfil">
|
|
<?php liste_options($profil,""); ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-lg-2">
|
|
<button onClick="ajaxListerMenusProfil();" type="button" class="btn btn-primary"> <?= _("Rafraichir") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<fieldset>
|
|
<legend> <?= _("Liste Menus") ?> </legend>
|
|
|
|
<div id="listemenu">
|
|
<?php liste_menus_profil($listemenu); ?>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|