14 lines
343 B
PHTML
14 lines
343 B
PHTML
<?php if ( $this->texte ) {?>
|
|
<tr>
|
|
<td width="50"> </td>
|
|
<td width="200" class="StyleInfoLib"><?=$this->label?></td>
|
|
<?php
|
|
if (!empty($this->titre)) {
|
|
$titre = ' title="'.$this->titre.'"';
|
|
} else {
|
|
$titre = '';
|
|
}
|
|
?>
|
|
<td width="350" class="StyleInfoData"<?=$titre?>><?=$this->texte?></td>
|
|
</tr>
|
|
<?php } ?> |