You are here

function metatags_quick_migrate_api in Meta tags quick 7.2

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

File

./metatags_quick.module, line 656
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_migrate_api() {
  $api = array(
    'api' => 2,
  );
  return $api;
}