You are here

function agls_ctools_plugin_api in AGLS Metadata 7

Implements hook_ctools_plugin_api().

File

./agls.module, line 10
Allows users and system to add AGLS meta tags to Drupal pages.

Code

function agls_ctools_plugin_api($owner, $api) {
  if ($owner == 'metatag' && $api == 'metatag') {
    return array(
      'version' => 1,
    );
  }
}