function list_field_formatter_info
Implements hook_field_formatter_info().
File
-
modules/
field/ modules/ list/ list.module, line 445
Code
function list_field_formatter_info() {
return array(
'list_default' => array(
'label' => t('Default'),
'field types' => array(
'list_integer',
'list_float',
'list_text',
'list_boolean',
),
),
'list_key' => array(
'label' => t('Key'),
'field types' => array(
'list_integer',
'list_float',
'list_text',
'list_boolean',
),
),
);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.