You are here

function _heartbeat_features_api in Heartbeat 6.4

Return API information for features.

1 call to _heartbeat_features_api()
heartbeat_features_api in ./heartbeat.module
Implementation of hook_features_api().

File

./heartbeat.features.inc, line 11
Features support.

Code

function _heartbeat_features_api() {
  return array(
    'heartbeat' => array(
      'name' => t('Heartbeat'),
      'default_hook' => 'heartbeat_message_info',
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
      'features_source' => TRUE,
      'file' => drupal_get_path('module', 'heartbeat') . '/heartbeat.features.inc',
    ),
  );
}