You are here

function flag_heartbeat_flag_definitions in Heartbeat 6.3

Same name and namespace in other branches
  1. 6.4 modules/flag_heartbeat/flag_heartbeat.module \flag_heartbeat_flag_definitions()

Implementation of hook_flag_definitions().

File

modules/flag_heartbeat/flag_heartbeat.module, line 19
Provides flag integration on heartbeat messages.

Code

function flag_heartbeat_flag_definitions() {
  return array(
    'heartbeat_message' => array(
      'title' => t('Heartbeat message'),
      'description' => t("Heartbeat messages are activity streams for occurring actions."),
      'handler' => 'flag_heartbeat_message',
    ),
  );
}