*/
class LSformElement_select_object 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($refresh=NULL){
if ($refresh) {
$this -> values = $this -> attr_html -> getValuesFromSession();
}
$return = $this -> getLabelInfos();
// value
$id=rand();
if (!$this -> isFreeze()) {
$addBtn="
"._('Modifier')."\n
\n
\n";
$delete=" ";
$class='LSformElement_select_object';
}
else {
$class='';
$delete='';
$addBtn='';
}
$return['html']="\n";
if (!$this -> isFreeze()) {
$GLOBALS['LSsession'] -> addJSscript('LSformElement_select_object.js');
$GLOBALS['LSsession'] -> addJSscript('LSform.js');
$GLOBALS['LSsession'] -> addJSscript('LSselect.js');
$GLOBALS['LSsession'] -> addCssFile('LSselect.css');
$GLOBALS['LSsession'] -> addJSscript('LSsmoothbox.js');
$GLOBALS['LSsession'] -> addCssFile('LSsmoothbox.css');
$GLOBALS['LSsession'] -> addJSscript('LSconfirmBox.js');
$GLOBALS['LSsession'] -> addCssFile('LSconfirmBox.css');
}
return $return;
}
/**
* Défini le type d'objet sélectionnable
*
* @param[in] $object string Le type d'object
*
* @retval void
**/
function setSelectableObject($object) {
$this -> selectableObject = $object;
}
/**
* Exporte les valeurs de l'élément
*
* @retval Array Les valeurs de l'élement
*/
function exportValues(){
$retval=array();
if (is_array($this -> values)) {
foreach($this -> values as $val => $name) {
$retval[] = $val;
}
}
return $retval;
}
}
?>