//Autres auteurs : *@copyright Tela-Botanica 2000-2008 *@version $Revision: 1.1.2.1 $ // +------------------------------------------------------------------------------------------------------+ */ include_once PAP_CHEMIN_API_PEAR.'PEAR.php'; class Bazar_texte extends PEAR { var $option = array(); function Bazar_texte($options) { $this->options = $options; } function toHTML($valeur) { if ($valeur == '') return ; $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: not supported by cvs2svn $ * * +-- Fin du code ----------------------------------------------------------------------------------------+ */ ?>