LSattr_html_select_object : Added getFormVal() method

This commit is contained in:
Benjamin Renard 2011-01-20 12:15:30 +01:00
parent 2f346f3ded
commit a76416b281

View file

@ -203,6 +203,17 @@ class LSattr_html_select_object extends LSattr_html{
return false;
}
/**
* Return the values to be displayed in the LSform
*
* @param[in] $data The values of attribute
*
* @retval array The values to be displayed in the LSform
**/
function getFormVal($data) {
return $data;
}
}
/*