//Autres auteurs : *@copyright Tela-Botanica 2000-2008 *@version $Revision: 1.4 $ // +------------------------------------------------------------------------------------------------------+ */ 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; } function toForm($valeur_defaut = '') { if ($valeur_defaut != '') $this->option['defaut'] = $valeur_defaut; $html = $this->options['label'].''; return $html; } } /* +--Fin du code ----------------------------------------------------------------------------------------+ * * $Log: not supported by cvs2svn $ * Revision 1.3 2008-10-29 10:36:44 alexandre_tb * l'element texte 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 ----------------------------------------------------------------------------------------+ */ ?>