You are here

function ds_ctools_plugin_api in Display Suite 7

Same name and namespace in other branches
  1. 7.2 ds.module \ds_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./ds.module, line 276
Display Suite core functions.

Code

function ds_ctools_plugin_api($owner, $api) {
  if ($owner == 'ds' && ($api == 'ds' || $api == 'plugins')) {
    return array(
      'version' => 1,
    );
  }
}