1 field_permission_example.module | field_permission_example_field_formatter_info() |
Implements hook_field_formatter_info().
We need to tell Backdrop about our excellent field formatter.
It's some text in a div, styled to look like a sticky note.
See also
field_permission_example_field_formatter_view()
Related topics
File
- modules/
examples/ field_permission_example/ field_permission_example.module, line 199 - Hook implementations for the Field Permission Example module.
Code
function field_permission_example_field_formatter_info() {
return array(
// This formatter simply displays the text in a text field.
'field_permission_example_formatter' => array(
'label' => t('Simple text-based formatter'),
'field types' => array('field_permission_example_fieldnote'),
),
);
}