extranet/includes/giant/templates/GiantCommandeRapport.tpl.php

37 lines
1.0 KiB
PHP
Raw Normal View History

<?php
2011-03-30 14:27:13 +00:00
require_once 'giant/Config.php';
require_once 'giant/Client.php';
foreach($DataSetOptions as $params)
{
foreach($params as $type)
{?>
<tr>
<td width="">&nbsp;</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 }
}
?>