2011-03-31 15:25:21 +00:00

36 lines
1.1 KiB
PHP

<div id="divOpenData" style="" align="center">
Cliquez pour afficher la liste
<div align="right" style="float:right">
<img src="/pages/giant/media/icons/application_put.png" class="idpr" id="r6" style="cursor:pointer" />
</div>
</div>
<div id="pr6" style="display:none">
<?php
foreach($Bank as $valeur)
{
echo '<table width="100%" id="TableContentInformation">';
echo '<tr>';
echo '<td><b>' . SelectTrueLabel($this->labelConfig, 'BankName').'</b></td>';
echo '<td>'.$valeur->BankName.'</td>';
echo '</tr>';
if (isset($valeur->BankAddress))
{
echo '<tr>';
echo '<td><b>'.SelectTrueLabel($this->labelConfig, 'BankAddress').'</b></td>';
foreach ($valeur->BankAddress as $adress)
echo '<td>'.$adress.'</td>';
echo '</tr>';
}
echo '<tr>';
echo '<td><b>' . SelectTrueLabel($this->labelConfig, 'AccountType').'</b></td>';
echo '<td><b>' . SelectTrueLabel($this->labelConfig, 'AccountNumber').'</b></td>';
echo '</tr>';
echo '<tr>';
foreach($valeur->BankAccount as $compte)
echo '<td>'.$compte.'</td>';
echo '</tr>';
echo '</table>';
}
?>
</div>