*/ class LSformElement_text extends LSformElement { /* * Retourne les infos d'affichage de l'élément * * Cette méthode retourne les informations d'affichage de l'élement * * @retval array */ function getDisplay(){ $return = $this -> getLabelInfos(); // value if (!$this -> isFreeze()) { $return['html'] = "\n"; } else { $return['html'] = "\n"; } return $return; } /* * Retourne le code HTML d'un champ vide * * @retval string Code HTML d'un champ vide. */ function getEmptyField() { $multiple = $this -> getMultipleData(); return "".$multiple; } } ?>