You are here

function heartbeat_heartbeat_register_access_types in Heartbeat 6.3

Same name and namespace in other branches
  1. 6.4 heartbeat.module \heartbeat_heartbeat_register_access_types()

Implementation of hook_heartbeat_register_access_types()

File

./heartbeat.module, line 448

Code

function heartbeat_heartbeat_register_access_types() {
  return array(
    0 => array(
      'name' => 'Personal Heartbeat',
      'class' => 'PrivateHeartbeat',
      'path' => 'includes/privateheartbeat.inc',
      'module' => 'heartbeat',
    ),
    1 => array(
      'name' => 'Public Heartbeat',
      'class' => 'PublicHeartbeat',
      'path' => 'includes/publicheartbeat.inc',
      'module' => 'heartbeat',
    ),
    2 => array(
      'name' => 'Heartbeat activity for user relations',
      'class' => 'ConnectedHeartbeat',
      'path' => 'includes/connectedheartbeat.inc',
      'module' => 'heartbeat',
    ),
  );
}