You are here

metatag_app_links.module in Metatag 7

Same filename and directory in other branches
  1. 8 metatag_app_links/metatag_app_links.module

Primary hook implementations for Metatag:App Links.

File

metatag_app_links/metatag_app_links.module
View source
<?php

/**
 * @file
 * Primary hook implementations for Metatag:App Links.
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function metatag_app_links_ctools_plugin_api($owner, $api) {
  if ($owner == 'metatag' && $api == 'metatag') {
    return array(
      'version' => 1,
    );
  }
}