function vms_example_ctools_plugin_api in Views Menu Support 8
Same name and namespace in other branches
- 7 vms_example/vms_example.features.inc \vms_example_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- vms_example/
vms_example.features.inc, line 10 - vms_example.features.inc
Code
function vms_example_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "strongarm" && $api == "strongarm") {
return array(
"version" => "1",
);
}
}