function hook_test_ctools_plugin_api in Display Suite 7
Same name and namespace in other branches
- 7.2 ds.api.php \hook_test_ctools_plugin_api()
Implements hook_ctools_plugin_api().
2 functions implement hook_test_ctools_plugin_api()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- ds_exportables_test_ctools_plugin_api in tests/
ds_exportables_test/ ds_exportables_test.module - Implements hook_ctools_plugin_api().
- ds_test_ctools_plugin_api in tests/
ds_test.module - Implements hook_ctools_plugin_api().
File
- ./
ds.api.php, line 16 - Hooks provided by Display Suite module.
Code
function hook_test_ctools_plugin_api($module, $api) {
if ($module == 'ds' && $api == 'ds' || $module == 'ds_extras' && $api == 'ds_extras') {
return array(
'version' => 1,
);
}
}