1 field_permission_example.module field_permission_example_field_is_empty($item, $field)

Implements hook_field_is_empty().

hook_field_is_empty() is where Backdrop asks us if this field is empty. Return TRUE if it does not contain data, FALSE if it does. This lets the form API flag an error when required fields are empty.

Related topics

File

modules/examples/field_permission_example/field_permission_example.module, line 186
Hook implementations for the Field Permission Example module.

Code

function field_permission_example_field_is_empty($item, $field) {
  return empty($item['notes']);
}