You are here

function ds_exportables_test_ctools_plugin_api in Display Suite 7.2

Same name and namespace in other branches
  1. 7 tests/ds_exportables_test/ds_exportables_test.module \ds_exportables_test_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

tests/ds_exportables_test/ds_exportables_test.module, line 11
Bulk export of objects generated by Bulk export module.

Code

function ds_exportables_test_ctools_plugin_api($module, $api) {
  if ($module == 'ds' && $api == 'ds' || $module == 'ds_extras' && $api == 'ds_extras') {
    return array(
      'version' => 1,
    );
  }
}