//Autres auteurs :
*@copyright Tela-Botanica 2000-2008
*@version $Revision: 1.3 $
// +------------------------------------------------------------------------------------------------------+
*/
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
class Bazar_textelong extends PEAR {
var $option = array();
function Bazar_textelong($options) {
$this->options = $options;
}
function toHTML($valeur) {
$html = '';
$val = $this->options['nom_bdd'];
//if (!in_array($val, array ('bf_titre', 'bf_description'))) {
$html .= '
'."\n".
''.$this->options['label'].' : '."\n";
$html .= ' '.
nl2br($valeur).''."\n".'
'."\n";
//}
return $html;
}
}
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: textelong.php,v $
* Revision 1.3 2008-10-29 10:35:40 alexandre_tb
* l'element textlong s affiche meme pour le titre et la description
*
* Revision 1.2 2008-09-17 14:18:12 alexandre_tb
* fusion avec aha
*
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
* version initiale
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>