You are here

function hds_get_types in Heartbeat 6.4

Return heartbeat types.

1 string reference to 'hds_get_types'
hds_ds_api in modules/hds/hds.module
Implementation of hook_ds_api().

File

modules/hds/hds.module, line 128
Heartbeat displays module.

Code

function hds_get_types() {
  $types = array();
  $row = new stdClass();
  $row->name = 'heartbeatactivity';
  $row->type = 'heartbeatactivity';
  $types['heartbeatactivity'] = $row;
  return $types;
}