32 lines
824 B
PHTML
Raw Normal View History

<?php if ($this->navigation()->menu()->hasPages()) { ?>
2011-04-19 09:59:03 +00:00
<div id="menu">
2011-01-05 09:59:49 +00:00
<div id="logo">
2011-01-05 15:14:23 +00:00
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
2011-01-05 09:59:49 +00:00
</div>
2011-02-16 17:09:15 +00:00
<?php
2011-02-21 08:45:51 +00:00
echo $this->navigation()->menu();
2011-02-16 17:09:15 +00:00
?>
<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 }?>
</div>
</div>
<script>
$('#menu ul.navigation').accordion({
2011-02-21 08:45:51 +00:00
header: '.header',
autoHeight: false,
collapsible: true,
active: <?php echo $this->menuScript(); ?>
});
</script>
<?php }?>