You are here

function flag_heartbeat_flag_definitions in Heartbeat 6.4

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

Implementation of hook_flag_definitions().

File

modules/flag_heartbeat/flag_heartbeat.module, line 15

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',
    ),
  );
}