//Autres auteurs : *@copyright Tela-Botanica 2000-2008 *@version $Revision: 1.1.2.1 $ // +------------------------------------------------------------------------------------------------------+ */ include_once PAP_CHEMIN_API_PEAR.'PEAR.php'; class Bazar_labelhtml extends PEAR { var $option = array(); function Bazar_labelhtml($options) { $this->options = $options; } function toHTML($valeur) { $html = ''; $val = $this->options['nom_bdd']; // On ecrit le label uniquement si le champs obligatoire est a 1 if ($this->options['obligatoire'] == 1) { $html .= '
'. $this->options['label'].'
'."\n"; } return $html; } } /* +--Fin du code ----------------------------------------------------------------------------------------+ * * $Log: not supported by cvs2svn $ * * +-- Fin du code ----------------------------------------------------------------------------------------+ */ ?>