bc4178eab1
Lien direct fiche identité Lien direct indiscore Utilisation de font awesome Intégration des modifications réalisées dans develop
43 lines
1.3 KiB
PHTML
43 lines
1.3 KiB
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>
|
|
<?=$this->navigation()->menu();?>
|
|
<div class="icones">
|
|
<?php if ($this->print) {?>
|
|
<a target="_blank" title="Impression" href="/editer/ecran/<?=$this->print.'.html'?>">
|
|
<img alt="<?=$this->translate("Impression")?>" src="/themes/default/images/interfaces/printer.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
<?php if ($this->pdf) {?>
|
|
<a target="_blank" title="Impression PDF" href="/editer/pdf/<?=$this->pdf.'.pdf'?>">
|
|
<img alt="<?=$this->translate("Impression en PDF")?>" src="/themes/default/images/interfaces/pdf.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
<?php if ($this->xml) {?>
|
|
<a target="_blank" title="Export XML" href="/editer/xml/<?=$this->xml.'.xml'?>">
|
|
<img alt="<?=$this->translate("Export en XML")?>" src="/themes/default/images/interfaces/xml.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
<?php if ($this->aide) {?>
|
|
<a id="aideLigne" title="Aide en ligne" href="#">
|
|
<img alt="<?=$this->translate("Activer l'aide en ligne")?>" src="/themes/default/images/interfaces/aideligne.png">
|
|
</a>
|
|
<?php }?>
|
|
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$('div#menu ul.navigation').accordion({
|
|
header: '.header',
|
|
autoHeight: false,
|
|
collapsible: true,
|
|
heightStyle: "content",
|
|
active: <?=$this->menuId?>
|
|
});
|
|
</script>
|
|
<?php }?> |