*/ class LSformElement_select extends LSformElement { /* * Retourn 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()) { if ($this -> params['multiple']==0) { $multiple_tag=''; } else { $multiple_tag='multiple'; } $return['html'] = "\n"; } else { $return['html']="\n"; } return $return; } } ?>