*/ class LSformElement_xmpp 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"; $GLOBALS['LSsession'] -> addJSscript('LSformElement_xmpp.js'); } 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; } } ?>