extranet/application/layouts/default/header.phtml

43 lines
1.3 KiB
PHTML
Raw Normal View History

<?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">
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
2011-01-05 10:59:49 +01:00
</div>
<?=$this->navigation()->menu();?>
<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">
</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">
</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 }?>
<?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>
<?php }?>
2011-09-27 12:12:14 +02:00
</div>
</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',
autoHeight: false,
collapsible: true,
heightStyle: "content",
active: <?=$this->menuId?>
});
</script>
<?php }?>