38 lines
1005 B
PHTML
38 lines
1005 B
PHTML
<?php if ($this->navigation()->menu()->hasPages()) { ?>
|
|
<div id="menu">
|
|
<div id="logo">
|
|
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
|
|
</div>
|
|
<?php
|
|
echo $this->navigation()->menu();
|
|
?>
|
|
<div class="icones">
|
|
<?php if ($this->print) {?>
|
|
<a target="_blank" title="Impression" href="/editer/ecran/<?=$this->print.'.html'?>">
|
|
<img alt="Impression" src="/themes/default/images/interfaces/printer.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
<?php if ($this->pdf) {?>
|
|
<a target="_blank" title="Impression" href="/editer/pdf/<?=$this->pdf.'.pdf'?>">
|
|
<img alt="Impression" src="/themes/default/images/interfaces/pdf.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
<?php if ($this->xml) {?>
|
|
<a target="_blank" title="Impression" href="/editer/xml/<?=$this->xml.'.xml'?>">
|
|
<img alt="Export en XML" src="/themes/default/images/interfaces/xml.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$('#menu ul.navigation').accordion({
|
|
header: '.header',
|
|
autoHeight: false,
|
|
collapsible: true,
|
|
active: <?=$this->menuId?>
|
|
});
|
|
</script>
|
|
<?php }?> |