//Autres auteurs : *@copyright Tela-Botanica 2000-2008 *@version $Revision: 1.2 $ // +------------------------------------------------------------------------------------------------------+ */ 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) $res .= '
'. $this->options['label'].'
'."\n"; return $html; } } /* +--Fin du code ----------------------------------------------------------------------------------------+ * * $Log: labelhtml.php,v $ * 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 ----------------------------------------------------------------------------------------+ */ ?>