You are here

function heartbeat_og_ctools_plugin_api in Heartbeat 7

Implements hook_ctools_plugin_api().

File

modules/heartbeat_og/heartbeat_og.module, line 10
Integration module for Heartbeat and Organic Groups.

Code

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