name, array('commons_follow_node', 'commons_follow_group'))) { $node = node_load($entity_id); // A user following their own node shouldn't add to its radioactivity. if ($node->uid == $account->uid) { return; } commons_radioactivity_incident_node($node, COMMONS_RADIOACTIVITY_FLAG_NODE); } } /** * Implements hook_flag_unflag(). * * Trigger radioactivity incidents when a user follows a node or group. */ function commons_radioactivity_flag_unflag($flag, $entity_id, $account, $flagging) { if (in_array($flag->name, array('commons_follow_node', 'commons_follow_group'))) { $node = node_load($entity_id); // A user unfollowing their own node shouldn't add to its radioactivity. if ($node->uid == $account->uid) { return; } commons_radioactivity_incident_node($node, -1 * COMMONS_RADIOACTIVITY_FLAG_NODE); } }