metatag_app_links.module 279 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Primary hook implementations for Metatag:App Links.
  5. */
  6. /**
  7. * Implements hook_ctools_plugin_api().
  8. */
  9. function metatag_app_links_ctools_plugin_api($owner, $api) {
  10. if ($owner == 'metatag' && $api == 'metatag') {
  11. return array('version' => 1);
  12. }
  13. }