function heartbeat_help in Heartbeat 7
Same name and namespace in other branches
- 8 heartbeat.module \heartbeat_help()
Implements hook_help().
File
- ./
heartbeat.module, line 50 - Module file for heartbeat activity. Basic hook implementations and helper functions will be found here.
Code
function heartbeat_help($path, $arg) {
switch ($path) {
case 'admin/help#heartbeat':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
return $output;
case 'admin/structure/heartbeat':
return '<p>' . t('Heartbeat activity lets you create streams, composed together with message templates that are parsed into activity messages.') . '</p>';
}
}