metatag_panels_tests.module 288 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Primary hook implementations.
  5. */
  6. /**
  7. * Implements hook_ctools_plugin_api().
  8. */
  9. function metatag_panels_tests_ctools_plugin_api($module = NULL, $api = NULL) {
  10. if ($module == "page_manager" && $api == "pages_default") {
  11. return array("version" => "1");
  12. }
  13. }