You are here

function heartbeat_ctools_plugin_api in Heartbeat 7

Implements hook_ctools_plugin_api().

File

./heartbeat.module, line 591
Module file for heartbeat activity. Basic hook implementations and helper functions will be found here.

Code

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