You are here

function enterprise_base_ctools_plugin_api in Enterprise Base 7.3

Same name and namespace in other branches
  1. 7 enterprise_base.features.inc \enterprise_base_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./enterprise_base.features.inc, line 10
enterprise_base.features.inc

Code

function enterprise_base_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "breakpoints" && $api == "default_breakpoint_group") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "breakpoints" && $api == "default_breakpoints") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "ds" && $api == "ds") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "picture" && $api == "default_picture_mapping") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}