Damien LASSERRE 987ff9efe9 Giant Beta 1.1
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
2011-04-05 14:11:19 +00:00

34 lines
1.2 KiB
PHP

<?php
function selectInTab($tab, $labelConfig)
{
static $title;
foreach($tab as $champ => $valeur)
{
if(!is_object($valeur)){
echo '<tr>';
echo '<td width="30"></td>';
echo '<td width="200" valign="top"><b>'.SelectTrueLabel($labelConfig, $champ).'</b></td>';
echo '<td width="350">'.$valeur.'</td>';
echo '</tr>';
} else {
echo '<tr>';
echo '<td colspan="3" id="categorieIdentite"><b>'.SelectTrueLabel($labelConfig, $champ).'</b></td>';
echo '</tr>';
$title = true;
selectInTab($valeur, $labelConfig);
}}
}
?>
<h2><?php echo SelectTrueLabel($this->labelConfig['Section_rapportIdentitie'], 'Identite')?></h2>
<table>
<?php selectInTab($this->identitePart1, $this->labelConfig['Section_rapportIdentitie']);?>
</table>
<h2><?php echo SelectTrueLabel($this->labelConfig['Section_rapportIdentitie'], 'RaisonSociale')?></h2>
<table>
<?php selectInTab($this->identitePart2, $this->labelConfig['Section_rapportIdentitie']);?>
</table>
<h2><?php echo SelectTrueLabel($this->labelConfig['Section_rapportIdentitie'], 'ActiviteEtChiffre')?></h2>
<table>
<?php selectInTab($this->identitePart3, $this->labelConfig['Section_rapportIdentitie']);?>
</table>