| 7 field.api.php | hook_field_info() |
| 8 field.api.php | hook_field_info() |
Define Field API field types.
Return value
An array whose keys are field type names and whose values are arrays describing the field type, with the following key/value pairs:
- label: The human-readable name of the field type.
- description: A short description for the field type.
- settings: An array whose keys are the names of the settings available for the field type, and whose values are the default values for those settings.
- instance_settings: An array whose keys are the names of the settings available for instances of the field type, and whose values are the default values for those settings. Instance-level settings can have different values on each field instance, and thus allow greater flexibility than field-level settings. It is recommended to put settings at the instance level whenever possible. Notable exceptions: settings acting on the schema definition, or settings that Views needs to use across field instances (for example, the list of allowed values).
- default_widget: The machine name of the default widget to be used by instances of this field type, when no widget is specified in the instance definition. This widget must be available whenever the field type is available (i.e. provided by the field type module, or by a module the field type module depends on).
- default_formatter: The machine name of the default formatter to be used by instances of this field type, when no formatter is specified in the instance definition. This formatter must be available whenever the field type is available (i.e. provided by the field type module, or by a module the field type module depends on).
- no_ui: (optional) A boolean specifying that users should not be allowed to create fields and instances of this field type through the UI. Such fields can only be created programmatically with field_create_field() and field_create_instance(). Defaults to FALSE.
See also
Related topics
7 functions implement hook_field_info()
5 invocations of hook_field_info()
File
- modules/
field/ field.api.php, line 143
Code
function hook_field_info() {
return array(
'text' => array(
'label' => t('Text'),
'description' => t('This field stores varchar text in the database.'),
'settings' => array('max_length' => 255),
'instance_settings' => array('text_processing' => 0),
'default_widget' => 'text_textfield',
'default_formatter' => 'text_default',
),
'text_long' => array(
'label' => t('Long text'),
'description' => t('This field stores long text in the database.'),
'settings' => array('max_length' => ''),
'instance_settings' => array('text_processing' => 0),
'default_widget' => 'text_textarea',
'default_formatter' => 'text_default',
),
'text_with_summary' => array(
'label' => t('Long text and summary'),
'description' => t('This field stores long text in the database along with optional summary text.'),
'settings' => array('max_length' => ''),
'instance_settings' => array(
'text_processing' => 1,
'display_summary' => 0,
),
'default_widget' => 'text_textarea_with_summary',
'default_formatter' => 'text_summary_or_trimmed',
),
);
}
Login or register to post comments
Comments
Even if a field doesn't have
Even if a field doesn't have any instance settings, it still needs to define an instance_settings array as of Drupal 7.0-RC1 due to an array merge operator in user_field_info_alter().
no,
no, _field_info_collate_fields() takes care of adding empty 'settings' and 'instance_settings' arrays if they are left undefined in hook_field_info().
Same goes for hook_field_widget_info() and hook_field_formatter_info().
Looking for cardinality settings?
You might think this is also the place to set default cardinality (maximum number of values) for a field, but it isn't (at least, not yet).
You need to use hook_form_alter() and override the form itself. Here's an example of how to set unlimited cardinality for a field.
Data collected from this hook
Data collected from this hook can be obtained with field_info_field_types.