function _multiselect_fapi_example_options in Multiselect 7
Function to get the value stored for the multiselect field from the variables table. Will return default values if nothing has yet been stored.
1 call to _multiselect_fapi_example_options()
- multiselect_fapi_example_display in multiselect_fapi_example/
multiselect_fapi_example.module - Implementation of FAPI form.
File
- multiselect_fapi_example/
multiselect_fapi_example.module, line 62
Code
function _multiselect_fapi_example_options() {
return variable_get('multiselector', array(
'fulltext',
'title',
'4',
'8',
));
}