You are here

function metatags_quick_field_is_empty in Meta tags quick 7.2

Same name and namespace in other branches
  1. 8.3 metatags_quick.module \metatags_quick_field_is_empty()
  2. 7 metatags_quick.module \metatags_quick_field_is_empty()

Implements hook_content_is_empty().

File

./metatags_quick.module, line 314
Quick and dirty implementation of meta tags for drupal 7 Module defines new field type 'meta'. Fields of this type are not displayed in HTML. Instead, they add html meta to the head section.

Code

function metatags_quick_field_is_empty($item, $field) {
  if (empty($item['metatags_quick'])) {
    return TRUE;
  }
  return FALSE;
}