You are here

function flag_heartbeat_message::applies_to_content_id_array in Heartbeat 7

Same name and namespace in other branches
  1. 6.4 modules/flag_heartbeat/class.flag_heartbeat_message.inc \flag_heartbeat_message::applies_to_content_id_array()
  2. 6.3 modules/flag_heartbeat/class.flag_heartbeat_message.inc \flag_heartbeat_message::applies_to_content_id_array()

File

modules/heartbeat_plugins/plugins/flagattachment.inc, line 356

Class

flag_heartbeat_message
Exposes a Heartbeat Message Flag.

Code

function applies_to_content_id_array($content_ids) {
  $passed = array();
  foreach ($content_ids as $uaid) {
    $passed[$uaid] = TRUE;
  }
  return $passed;
}