You are here

function panopoly_test_ctools_plugin_api in Panopoly 7

Implements hook_ctools_plugin_api().

File

modules/panopoly/panopoly_test/panopoly_test.features.inc, line 10
panopoly_test.features.inc

Code

function panopoly_test_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "panelizer" && $api == "panelizer") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}