You are here

fpp_with_panels_test.module in Fieldable Panels Panes (FPP) 7

Primary hook implementations.

File

tests/fpp_with_panels_test.module
View source
<?php

/**
 * @file
 * Primary hook implementations.
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function fpp_with_panels_test_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "page_manager" && $api == "pages_default") {
    return array(
      "version" => "1",
    );
  }
}