1 field_ui.admin.inc | field_ui_field_type_options() |
Returns an array of field_type options.
File
- core/
modules/ field_ui/ field_ui.admin.inc, line 1493 - Admin page callbacks for the Field UI module.
Code
function field_ui_field_type_options() {
$options = &backdrop_static(__FUNCTION__);
if (!isset($options)) {
$options = array();
$field_types = field_info_field_types();
$field_type_options = array();
foreach ($field_types as $name => $field_type) {
// Skip field types which have no widget types, or should not be added via
// the user interface.
if (field_ui_widget_type_options($name) && empty($field_type['no_ui'])) {
$options[$name] = $field_type['label'];
}
}
asort($options);
}
return $options;
}