function theme_heartbeat_block in Heartbeat 6.4
Same name and namespace in other branches
- 6.2 heartbeat.module \theme_heartbeat_block()
Theme function for a block of heartbeat activity messages.
1 theme call to theme_heartbeat_block()
- heartbeat_block in ./
heartbeat.module - Implementation of hook_blocks().
File
- ./
heartbeat.module, line 772
Code
function theme_heartbeat_block($messages, HeartbeatAccess $heartbeatAccess, $link = '') {
$output = theme('heartbeat_list', $messages, $heartbeatAccess, $link);
return $output;
}