987ff9efe9
Modification : - Affichage des informations - Réalisation de l'affichage des bilans - Réalisation de l'affichage des Banques - Sectionnalisation des catégories Mise en accord avec la charte graphique S&D PARTIE BACKEND
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="img/icones/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, 'img/flag/').'"/> ';
|
|
?>
|
|
</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 }
|
|
}
|
|
?>
|