2011-03-30 14:04:17 +00:00
|
|
|
<?php
|
2011-04-06 13:13:14 +00:00
|
|
|
/**
|
|
|
|
* Fichier de gestion des affichages des différents rapport disponnibles.
|
|
|
|
*
|
|
|
|
*/
|
2011-03-30 14:27:13 +00:00
|
|
|
require_once 'giant/Config.php';
|
|
|
|
require_once 'giant/Client.php';
|
2011-03-30 14:04:17 +00:00
|
|
|
|
|
|
|
foreach($DataSetOptions as $params)
|
|
|
|
{
|
|
|
|
foreach($params as $type)
|
|
|
|
{?>
|
|
|
|
<tr>
|
|
|
|
<td width=""> </td>
|
|
|
|
<td width="200" valign="top">
|
2011-04-05 14:11:19 +00:00
|
|
|
<img title="<?php echo SelectTrueLabel($config['Section_rapport'], 'RapportType') . $type->DataSetType->_;?>" src="img/icones/page_white_magnify.png" />
|
2011-03-30 14:04:17 +00:00
|
|
|
<b><?php echo $type->DataSetType->_;?></b>
|
|
|
|
</td>
|
|
|
|
<td width="100">
|
|
|
|
<?php
|
|
|
|
foreach($type->LanguageCodes->LanguageCode as $Language)
|
|
|
|
echo '<img title="'.
|
2011-04-05 14:11:19 +00:00
|
|
|
SelectTrueLabel($config['Section_rapport'], 'DesciptionLanguage').$Language.'" src="'._getFlags($Language, 'img/flag/').'"/> ';
|
2011-03-30 14:04:17 +00:00
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="./?
|
|
|
|
page=RapportGiant
|
|
|
|
&pays=<?php echo $_GET['pays']; ?>
|
|
|
|
&company=<?php echo $_GET['company'];?>
|
|
|
|
&level=Immediate
|
|
|
|
&type=<?php echo $type->DataSetType->_;?>
|
|
|
|
&lang=<?php echo $Language;?>
|
|
|
|
">
|
|
|
|
Consulter le rapport en immédiat.
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php }
|
|
|
|
}
|
|
|
|
?>
|