You are here

function heartbeat_load_message_instance in Heartbeat 6.4

Same name and namespace in other branches
  1. 6.3 heartbeat.module \heartbeat_load_message_instance()

Fetches the translatable message for corresponding action

Parameters

string $hid:

5 calls to heartbeat_load_message_instance()
flag_heartbeat_message::_load_content in modules/flag_heartbeat/class.flag_heartbeat_message.inc
heartbeat_comments_token_values in modules/heartbeat_comments/heartbeat_comments.module
Implementation of hook_token_values().
heartbeat_messages_multiple_delete_confirm in ./heartbeat.admin.inc
List the selected activitymessages and verify that the admin really wants to delete them.
heartbeat_promote_message_instance in ./heartbeat.module
Promote a message to the list again.
_heartbeat_activity_delete in ./heartbeat.module
Deletes a heartbeat activity messages.
1 string reference to 'heartbeat_load_message_instance'
heartbeat_views_views_bulk_operations_object_info in views/heartbeat_views.module
Implementation of hook_views_bulk_operations_object_info()

File

./heartbeat.module, line 1650

Code

function heartbeat_load_message_instance($uaid) {
  return db_fetch_object(db_query("SELECT * from {heartbeat_activity} WHERE  uaid = %d ", $uaid));
}