function enterprise_base_ctools_plugin_api in Enterprise Base 7.3
Same name and namespace in other branches
- 7 enterprise_base.features.inc \enterprise_base_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
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",
);
}
}