Thanks, you two!
I think I might be able to avoid the global variable technique by just running another foreach loop after the one I use to create the topics themselves, which would eliminate the need for another hook and function. Does that seem right? Instead I can just use a variable scoped to the whole function, and collect the needed ID numbers similar to how Ray is suggesting here.
My biggest obstacle right now is how to interrupt the activity creation or the email-sending for the original topic and wait until we know what all the duplicates are before sending. The way I'm starting to try right now is to tap into the function that adds in the "This topic was also posted in..." message (
bpmfp_duplicate_post_message_notification()
) and collect the content for the original activity email into a global variable (there it is!):
if ( empty( $all_topic_ids ) && !empty( $_POST['groups-to-post-to'] ) ) {
$bpmfp_original_activity_content = $content;
return $content;
}
Then, I use the function you already wrote, Boone, to avoid sending multiple emails for one person (
bpmfp_send_bpges_notification_for_user()
) to prevent the original activity email from being sent:
$all_topic_ids = bpmfp_get_duplicate_topics_list( $topic_id );
if ( empty( $all_topic_ids ) && !empty( $_POST['groups-to-post-to'] ) ) {
$send_it = false;
return $send_it;
}
I checked the bp group email plugin and that works in terms of the order that the hooks are fired, first it creates the content and then it decides it it'll send it or not.
I think the next thing would be to break out the topic-creation from the activity-creation, and then add in a call to a function at the end of
bpmfp_create_duplicate_topics()
that would manually send an email with the original content (stored in the global variable), borrowing some code from the bp group email plugin or maybe even just manually calling one of its functions.
Does that seem feasible to you two? I don't like that it's taking those two functions and having them do two different things, but it seems like the most straightforward way. Would it be worth it to break out the new behavior into their own functions, hooked to the same filters?