2011-04-29 09:46:29 +02:00
|
|
|
<?php if ($this->navigation()->menu()->hasPages()) { ?>
|
2011-04-19 11:59:03 +02:00
|
|
|
<div id="menu">
|
2011-01-05 10:59:49 +01:00
|
|
|
<div id="logo">
|
2017-01-03 15:38:40 +01:00
|
|
|
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
|
2011-01-05 10:59:49 +01:00
|
|
|
</div>
|
2012-03-25 18:51:13 +02:00
|
|
|
<?=$this->navigation()->menu();?>
|
2011-04-29 09:46:29 +02:00
|
|
|
<div class="icones">
|
|
|
|
<?php if ($this->print) {?>
|
|
|
|
<a target="_blank" title="Impression" href="/editer/ecran/<?=$this->print.'.html'?>">
|
2013-12-26 15:42:44 +01:00
|
|
|
<img alt="<?=$this->translate("Impression")?>" src="/themes/default/images/interfaces/printer.png">
|
2011-04-29 09:46:29 +02:00
|
|
|
</a>
|
|
|
|
<?php }?>
|
|
|
|
|
|
|
|
<?php if ($this->pdf) {?>
|
2011-09-27 12:12:14 +02:00
|
|
|
<a target="_blank" title="Impression PDF" href="/editer/pdf/<?=$this->pdf.'.pdf'?>">
|
2013-12-26 15:42:44 +01:00
|
|
|
<img alt="<?=$this->translate("Impression en PDF")?>" src="/themes/default/images/interfaces/pdf.png">
|
2011-04-29 09:46:29 +02:00
|
|
|
</a>
|
|
|
|
<?php }?>
|
|
|
|
|
2011-05-24 08:25:58 +02:00
|
|
|
<?php if ($this->xml) {?>
|
2011-09-27 12:12:14 +02:00
|
|
|
<a target="_blank" title="Export XML" href="/editer/xml/<?=$this->xml.'.xml'?>">
|
2013-12-26 15:42:44 +01:00
|
|
|
<img alt="<?=$this->translate("Export en XML")?>" src="/themes/default/images/interfaces/xml.png">
|
2011-05-24 08:25:58 +02:00
|
|
|
</a>
|
|
|
|
<?php }?>
|
|
|
|
|
2011-10-07 11:02:17 +02:00
|
|
|
<?php if ($this->aide) {?>
|
2011-09-27 12:12:14 +02:00
|
|
|
<a id="aideLigne" title="Aide en ligne" href="#">
|
2013-12-26 15:42:44 +01:00
|
|
|
<img alt="<?=$this->translate("Activer l'aide en ligne")?>" src="/themes/default/images/interfaces/aideligne.png">
|
2011-09-27 12:12:14 +02:00
|
|
|
</a>
|
2011-10-07 11:02:17 +02:00
|
|
|
<?php }?>
|
2011-09-27 12:12:14 +02:00
|
|
|
|
2011-04-29 09:46:29 +02:00
|
|
|
</div>
|
2011-01-10 11:19:09 +01:00
|
|
|
</div>
|
|
|
|
<script>
|
2012-11-14 21:44:24 +01:00
|
|
|
$('div#menu ul.navigation').accordion({
|
2011-02-21 09:45:51 +01:00
|
|
|
header: '.header',
|
2011-01-10 11:19:09 +01:00
|
|
|
autoHeight: false,
|
|
|
|
collapsible: true,
|
2013-02-05 09:43:06 +01:00
|
|
|
heightStyle: "content",
|
2011-06-08 09:40:11 +02:00
|
|
|
active: <?=$this->menuId?>
|
2011-01-10 11:19:09 +01:00
|
|
|
});
|
2011-04-29 09:46:29 +02:00
|
|
|
</script>
|
|
|
|
<?php }?>
|