function heartbeat_load_message_instance in Heartbeat 6.3
Same name and namespace in other branches
- 6.4 heartbeat.module \heartbeat_load_message_instance()
Fetches the translatable message for corresponding action
Parameters
string $hid:
1 call to heartbeat_load_message_instance()
- flag_heartbeat_message::_load_content in modules/
flag_heartbeat/ class.flag_heartbeat_message.inc
File
- ./
heartbeat.module, line 834
Code
function heartbeat_load_message_instance($uaid) {
return db_fetch_object(db_query("SELECT * from {heartbeat_activity} WHERE uaid = %d LIMIT 1", $uaid));
}