You are here

function _options_element_supported_field_types in Options Element 7

Returns supported field types.

2 calls to _options_element_supported_field_types()
options_element_form_field_ui_field_edit_form_alter in ./options_element.module
Implements hook_form_FORM_ID_alter().
options_element_form_field_ui_field_settings_form_alter in ./options_element.module
Implements hook_form_FORM_ID_alter().

File

./options_element.module, line 303
Defines an "options" form element type for entering select list options.

Code

function _options_element_supported_field_types() {
  return array(
    'list_integer',
    'list_float',
    'list_text',
  );
}