function empty_fields_empty_fields in Empty fields 7.2
Implements hook_empty_fields().
File
- ./
empty_fields.module, line 76 - Contains the implementation for the empty_fields module.
Code
function empty_fields_empty_fields() {
$items = array(
'EmptyFieldText' => array(
'title' => t('Display Custom Text'),
),
'EntityLabelEmptyFieldHandler' => array(
'title' => t('Display Entity Label'),
),
);
return $items;
}