37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
require_once 'giant/config.php';
|
|
require_once 'giant/client.php';
|
|
|
|
foreach($DataSetOptions as $params)
|
|
{
|
|
foreach($params as $type)
|
|
{?>
|
|
<tr>
|
|
<td width=""> </td>
|
|
<td width="200" valign="top">
|
|
<img title="<?php echo SelectTrueLabel($config['Section_rapport'], 'RapportType') . $type->DataSetType->_;?>" src="pages/giant/media/icons/page_white_magnify.png" />
|
|
<b><?php echo $type->DataSetType->_;?></b>
|
|
</td>
|
|
<td width="100">
|
|
<?php
|
|
foreach($type->LanguageCodes->LanguageCode as $Language)
|
|
echo '<img title="'.
|
|
SelectTrueLabel($config['Section_rapport'], 'DesciptionLanguage').$Language.'" src="'._getFlags($Language, 'pages/giant/media/Flags/').'"/> ';
|
|
?>
|
|
</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 }
|
|
}
|
|
?>
|