function flag_heartbeat_message::applies_to_content_object in Heartbeat 6.3
Same name and namespace in other branches
- 6.4 modules/flag_heartbeat/class.flag_heartbeat_message.inc \flag_heartbeat_message::applies_to_content_object()
- 7 modules/heartbeat_plugins/plugins/flagattachment.inc \flag_heartbeat_message::applies_to_content_object()
File
- modules/
flag_heartbeat/ class.flag_heartbeat_message.inc, line 29
Class
- flag_heartbeat_message
- Implements a Heartbeat message flag.
Code
function applies_to_content_object($message_instance) {
if ($message_instance) {
return TRUE;
}
return FALSE;
}