You are here

function heartbeat_comments_ctools_plugin_api in Heartbeat 7

Implements hook_ctools_plugin_api().

File

modules/heartbeat_comments/heartbeat_comments.module, line 11
Heartbeat comments for activity.

Code

function heartbeat_comments_ctools_plugin_api($owner, $api) {
  if ($owner == 'heartbeat_plugins' && $api == 'heartbeat_plugins') {
    return array(
      'version' => 1,
    );
  }
}