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">
|
2011-01-05 16:14:23 +01:00
|
|
|
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
|
2011-01-05 10:59:49 +01:00
|
|
|
</div>
|
2011-02-16 18:09:15 +01:00
|
|
|
<?php
|
2011-02-21 09:45:51 +01:00
|
|
|
echo $this->navigation()->menu();
|
2011-02-16 18:09:15 +01:00
|
|
|
?>
|
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'?>">
|
|
|
|
<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>
|
2011-01-10 11:19:09 +01:00
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$('#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,
|
|
|
|
active: <?php echo $this->menuScript(); ?>
|
|
|
|
});
|
2011-04-29 09:46:29 +02:00
|
|
|
</script>
|
|
|
|
<?php }?>
|