You are here

function metatags_quick_views_api in Meta tags quick 7.2

Same name and namespace in other branches
  1. 8.3 metatags_quick.module \metatags_quick_views_api()

Implements hook_views_api().

File

./metatags_quick.module, line 80
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_views_api() {
  return array(
    'api' => 3,
  );
}