mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/1.5-beta-1@4894 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
164 lines
6.7 KiB
PHP
164 lines
6.7 KiB
PHP
<?php
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
/**
|
|
* Sends an email notification and a BP notification when someone mentions you in an update
|
|
*
|
|
* @package BuddyPress Activity
|
|
* @param str $content The content of the activity update
|
|
* @param int $poster_user_id The unique user_id of the user who sent the update
|
|
* @param int $activity_id The id of the activity update
|
|
*/
|
|
function bp_activity_at_message_notification( $activity_id, $receiver_user_id ) {
|
|
global $bp;
|
|
|
|
$activity = new BP_Activity_Activity( $activity_id );
|
|
|
|
$subject = '';
|
|
$message = '';
|
|
|
|
// Add the BP notification
|
|
bp_core_add_notification( $activity_id, $receiver_user_id, 'activity', 'new_at_mention', $activity->user_id );
|
|
|
|
// Now email the user with the contents of the message (if they have enabled email notifications)
|
|
if ( 'no' != bp_get_user_meta( $receiver_user_id, 'notification_activity_new_mention', true ) ) {
|
|
$poster_name = bp_core_get_user_displayname( $activity->user_id );
|
|
|
|
$message_link = bp_activity_get_permalink( $activity_id );
|
|
$settings_link = bp_core_get_user_domain( $receiver_user_id ) . bp_get_settings_slug() . '/notifications/';
|
|
|
|
$poster_name = stripslashes( $poster_name );
|
|
$content = bp_activity_filter_kses( strip_tags( stripslashes( $activity->content ) ) );
|
|
|
|
// Set up and send the message
|
|
$ud = bp_core_get_core_userdata( $receiver_user_id );
|
|
$to = $ud->user_email;
|
|
$sitename = wp_specialchars_decode( get_blog_option( bp_get_root_blog_id(), 'blogname' ), ENT_QUOTES );
|
|
$subject = '[' . $sitename . '] ' . sprintf( __( '%s mentioned you in an update', 'buddypress' ), $poster_name );
|
|
|
|
if ( bp_is_active( 'groups' ) && bp_is_group() ) {
|
|
$message = sprintf( __(
|
|
'%1$s mentioned you in the group "%2$s":
|
|
|
|
"%3$s"
|
|
|
|
To view and respond to the message, log in and visit: %4$s
|
|
|
|
---------------------
|
|
', 'buddypress' ), $poster_name, bp_get_current_group_name(), $content, $message_link );
|
|
} else {
|
|
$message = sprintf( __(
|
|
'%1$s mentioned you in an update:
|
|
|
|
"%2$s"
|
|
|
|
To view and respond to the message, log in and visit: %3$s
|
|
|
|
---------------------
|
|
', 'buddypress' ), $poster_name, $content, $message_link );
|
|
}
|
|
|
|
$message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
|
|
|
|
/* Send the message */
|
|
$to = apply_filters( 'bp_activity_at_message_notification_to', $to );
|
|
$subject = apply_filters( 'bp_activity_at_message_notification_subject', $subject, $poster_name );
|
|
$message = apply_filters( 'bp_activity_at_message_notification_message', $message, $poster_name, $content, $message_link, $settings_link );
|
|
|
|
wp_mail( $to, $subject, $message );
|
|
}
|
|
|
|
do_action( 'bp_activity_sent_mention_email', $activity, $subject, $message, $content );
|
|
}
|
|
|
|
function bp_activity_new_comment_notification( $comment_id, $commenter_id, $params ) {
|
|
global $bp;
|
|
|
|
extract( $params );
|
|
|
|
$original_activity = new BP_Activity_Activity( $activity_id );
|
|
|
|
if ( $original_activity->user_id != $commenter_id && 'no' != bp_get_user_meta( $original_activity->user_id, 'notification_activity_new_reply', true ) ) {
|
|
$poster_name = bp_core_get_user_displayname( $commenter_id );
|
|
$thread_link = bp_activity_get_permalink( $activity_id );
|
|
$settings_link = bp_core_get_user_domain( $original_activity->user_id ) . bp_get_settings_slug() . '/notifications/';
|
|
|
|
$poster_name = stripslashes( $poster_name );
|
|
$content = bp_activity_filter_kses( stripslashes($content) );
|
|
|
|
// Set up and send the message
|
|
$ud = bp_core_get_core_userdata( $original_activity->user_id );
|
|
$to = $ud->user_email;
|
|
$sitename = wp_specialchars_decode( get_blog_option( bp_get_root_blog_id(), 'blogname' ), ENT_QUOTES );
|
|
$subject = '[' . $sitename . '] ' . sprintf( __( '%s replied to one of your updates', 'buddypress' ), $poster_name );
|
|
|
|
$message = sprintf( __(
|
|
'%1$s replied to one of your updates:
|
|
|
|
"%2$s"
|
|
|
|
To view your original update and all comments, log in and visit: %3$s
|
|
|
|
---------------------
|
|
', 'buddypress' ), $poster_name, $content, $thread_link );
|
|
|
|
$message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
|
|
|
|
/* Send the message */
|
|
$to = apply_filters( 'bp_activity_new_comment_notification_to', $to );
|
|
$subject = apply_filters( 'bp_activity_new_comment_notification_subject', $subject, $poster_name );
|
|
$message = apply_filters( 'bp_activity_new_comment_notification_message', $message, $poster_name, $content, $thread_link, $settings_link );
|
|
|
|
wp_mail( $to, $subject, $message );
|
|
|
|
do_action( 'bp_activity_sent_reply_to_update_email', $original_activity->user_id, $subject, $message, $comment_id, $commenter_id, $params );
|
|
}
|
|
|
|
/***
|
|
* If this is a reply to another comment, send an email notification to the
|
|
* author of the immediate parent comment.
|
|
*/
|
|
if ( $activity_id == $parent_id )
|
|
return false;
|
|
|
|
$parent_comment = new BP_Activity_Activity( $parent_id );
|
|
|
|
if ( $parent_comment->user_id != $commenter_id && $original_activity->user_id != $parent_comment->user_id && 'no' != bp_get_user_meta( $parent_comment->user_id, 'notification_activity_new_reply', true ) ) {
|
|
$poster_name = bp_core_get_user_displayname( $commenter_id );
|
|
$thread_link = bp_activity_get_permalink( $activity_id );
|
|
$settings_link = bp_core_get_user_domain( $parent_comment->user_id ) . bp_get_settings_slug() . '/notifications/';
|
|
|
|
// Set up and send the message
|
|
$ud = bp_core_get_core_userdata( $parent_comment->user_id );
|
|
$to = $ud->user_email;
|
|
$sitename = wp_specialchars_decode( get_blog_option( bp_get_root_blog_id(), 'blogname' ), ENT_QUOTES );
|
|
$subject = '[' . $sitename . '] ' . sprintf( __( '%s replied to one of your comments', 'buddypress' ), $poster_name );
|
|
|
|
$poster_name = stripslashes( $poster_name );
|
|
$content = bp_activity_filter_kses( stripslashes( $content ) );
|
|
|
|
$message = sprintf( __(
|
|
'%1$s replied to one of your comments:
|
|
|
|
"%2$s"
|
|
|
|
To view the original activity, your comment and all replies, log in and visit: %3$s
|
|
|
|
---------------------
|
|
', 'buddypress' ), $poster_name, $content, $thread_link );
|
|
|
|
$message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
|
|
|
|
/* Send the message */
|
|
$to = apply_filters( 'bp_activity_new_comment_notification_comment_author_to', $to );
|
|
$subject = apply_filters( 'bp_activity_new_comment_notification_comment_author_subject', $subject, $poster_name );
|
|
$message = apply_filters( 'bp_activity_new_comment_notification_comment_author_message', $message, $poster_name, $content, $settings_link );
|
|
|
|
wp_mail( $to, $subject, $message );
|
|
|
|
do_action( 'bp_activity_sent_reply_to_reply_email', $original_activity->user_id, $subject, $message, $comment_id, $commenter_id, $params );
|
|
}
|
|
}
|
|
|
|
?>
|