You are here

function paragraphs_test_ctools_plugin_api in Paragraphs 7

Implements hook_ctools_plugin_api().

File

tests/paragraphs_test/paragraphs_test.features.inc, line 11
paragraphs_test.features.inc

Code

function paragraphs_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",
    );
  }
}