You are here

function heartbeat_defaults_ctools_plugin_api in Heartbeat 7

Implements hook_ctools_plugin_api().

File

modules/heartbeat_defaults/heartbeat_defaults.module, line 20
Heartbeat defaults module file

Code

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