18 lines
559 B
PHTML
18 lines
559 B
PHTML
<?php if ( $this->texte ) {?>
|
|
<tr>
|
|
<td width="50" class="aide">
|
|
<?php if ( !empty($this->aide) ) {?>
|
|
<img src="/themes/default/images/interfaces/aideligne.png" width="16" height="16" style="display:none;"/>
|
|
<div id="<?=$this->id?>" style="display:none;"><?=$this->aide?></div>
|
|
<?php } ?></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 } ?> |