extranet/www/pages/menu.php

112 lines
2.5 KiB
PHP
Raw Normal View History

2010-01-28 09:32:35 +00:00
<div id="floatMenu">
<?php
$logo = './img/logo_menu.gif';
$logo_width = 200;
$logo_height = 65;
if ( $_SESSION['tabInfo']['login']=='blabla' ){
$logo = './img/logo_sg.gif';
$logo_width = 200;
$logo_height = 65;
} elseif ($_SESSION['tabInfo']['login']=='testsd30') {
$logo = './img/logo_sita.gif';
$logo_width = 200;
$logo_height = 128;
}
?>
<div id="logo">
<img src="<?=$logo?>" width="<?php echo $logo_width?>" height="<?php echo $logo_height?>"/>
</div>
2010-01-28 09:32:35 +00:00
<div id="Menu">
2010-03-02 15:50:11 +00:00
<?php
2009-10-02 09:24:43 +00:00
require_once 'menu/menu.php';
2010-01-28 09:32:35 +00:00
echo menu();
?>
</div>
2010-01-28 09:32:35 +00:00
<div id="icones">
<?php
//Ajout des paramètres optionnelles pour la page recherche (lors de la première recherche)
2009-03-06 17:12:26 +00:00
if ($page=='recherche'){
if ($_REQUEST['vue']=='list' ) $_SERVER['QUERY_STRING'] = str_replace('vue=list', 'vue=list_pre', $_SERVER['QUERY_STRING']);
2009-03-06 16:26:26 +00:00
}
?>
2009-07-01 09:02:54 +00:00
<?php
$printUrl = $_SERVER['QUERY_STRING'];
if ($page=='bilans' && isset($_REQUEST['type']) && $_REQUEST['type']!=''){
$printUrl.= '&type='.$_REQUEST['type'];
}
?>
<a href="/?<?=$printUrl;?>&sortie=prt" title="Impression" target="_blank">
2010-01-28 09:32:35 +00:00
<img src="./img/exporticones/printer.png" alt="Impression"/></a>&nbsp;
2009-03-06 16:26:26 +00:00
<?php
2010-01-28 09:32:35 +00:00
//Affichage des impressions seulement pour certaines pages
if ($page!='recherche' && $page!='main' && $page!='' ){
2009-03-06 16:26:26 +00:00
?>
<a href="./?<?=$_SERVER['QUERY_STRING'];?>&sortie=pdf" target="_blank" title="PDF">
<img src="./img/exporticones/pdf.png" alt="PDF" /></a>&nbsp;
2009-07-01 09:02:54 +00:00
<?php
2009-05-28 17:10:09 +00:00
}
$pageCSV = array(
'identite',
'etablissements',
'liens',
'evenements',
'dirigeants',
'annonces',
'synthese',
'bilans',
'ratios',
'liasse',
'indiscore',
'bourse',
'banque',
'conventions',
'marques',
);
$pageXML = array(
'identite',
'etablissements',
'liens',
'evenements',
'dirigeants',
'annonces',
'synthese',
'bilans',
'ratios',
'liasse',
'indiscore',
'bourse',
'banque',
'scorescf',
'competences',
'conventions',
'marques',
);
if (in_array($page, $pageCSV)
|| ($page == 'marques' && empty($_GET['id']))) {
?>
<a href="./exportcsv.php?<?=$_SERVER['QUERY_STRING']?>" target="_blank" title="CSV">
<img src="./img/exporticones/csv.png" alt="CSV" /></a>&nbsp;
<?php
}
if (in_array($page, $pageXML)
|| ($page == 'marques' && empty($_GET['id']))
|| ($page == 'competences' && empty($_GET['vue'])) ) {
?>
<a href="./exportxml.php?<?=$_SERVER['QUERY_STRING']?>" target="_blank" title="XML">
<img src="./img/exporticones/xml.png" alt="XML" /></a>&nbsp;
<?php
2009-03-06 17:12:26 +00:00
}
2009-03-06 16:26:26 +00:00
?>
</div>
2010-01-28 09:32:35 +00:00
</div>
<script type="text/javascript">
2010-03-02 15:50:11 +00:00
<?php
require_once 'menu/defineMenu.php';
2010-01-28 09:32:35 +00:00
?>
$(document).ready(function()
{
$('#Menu').accordion(<?=activeMenu($page)?>);
2010-01-28 09:32:35 +00:00
});
</script>