26 lines
988 B
PHP
26 lines
988 B
PHP
<?php
|
|
$adress = '<table>'.
|
|
'<tr>'.
|
|
'<td colspan="2" align="center"><span style="color:#9C093A">'.$Branch->BranchName->_.'</span></td>'.
|
|
'</tr>'.
|
|
'<tr>'.
|
|
'<td><b>'.SelectTrueLabel($this->labelConfig, 'Adresse').' :</b></td>'.
|
|
'<td>' . $Branch->BranchAddress->HouseNumber .' '.$Branch->BranchAddress->Street.'</td>'.
|
|
'</tr>'.
|
|
'<tr>'.
|
|
'<td><b>'.SelectTrueLabel($this->labelConfig, 'Cp/City').' :</b></td>'.
|
|
'<td>' . $Branch->BranchAddress->PostCode .' '.$Branch->BranchAddress->City.'</td>'.
|
|
'</tr>';
|
|
|
|
echo '<pre>';
|
|
?>
|
|
<table width="100%" id="TableContentInformation">
|
|
<tr>
|
|
<td><b><?php echo SelectTrueLabel($this->labelConfig, 'BranchName')?></b></td>
|
|
<td class="GiantTooltip" title="<?php echo htmlentities($adress)?>"><?php echo $Branch->BranchName->_?></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b><?php echo SelectTrueLabel($this->labelConfig, 'FoundingDate')?></b></td>
|
|
<td><?php echo $Branch->FoundingDate->_?></td>
|
|
</tr>
|
|
</table>
|