You are here

function heartbeat_connected_messages in Heartbeat 6.3

function to show private/connected heartbeats

1 string reference to 'heartbeat_connected_messages'
heartbeat_menu in ./heartbeat.module
Implementation of hook_menu().

File

./heartbeat.module, line 638

Code

function heartbeat_connected_messages() {
  $context = new HeartbeatMessageBuilder(new ConnectedHeartbeat());
  $messages = $context
    ->execute();
  return theme('heartbeat_block_private', $messages);
}