You are here

function ds_test_ctools_plugin_api in Display Suite 7

Implements hook_ctools_plugin_api().

File

tests/ds_test.module, line 183
Display Suite test module.

Code

function ds_test_ctools_plugin_api($module, $api) {
  if ($module == 'rel' && $api == 'rel') {
    return array(
      'version' => 1,
    );
  }
}