bp_member_invite_submit()

Member submit email invite.

Description

Source

File: bp-invites/actions/invites.php

18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
function bp_member_invite_submit() {
 
    global $bp;
 
    if ( ! bp_is_invites_component() ) {
        return;
    }
 
    if ( ! bp_is_my_profile() ) {
        return;
    }
 
    if ( ! bp_is_post_request() ) {
        return;
    }
 
    // Bail if no submit action.
    if ( ! isset( $_POST['member-invite-submit'] ) ) {
        return;
    }
 
    // Bail if not in settings.
    if ( ! bp_is_invites_component() || ! bp_is_current_action( 'send-invites' ) ) {
        return;
    }
 
    // 404 if there are any additional action variables attached
    if ( bp_action_variables() ) {
        bp_do_404();
        return;
    }
 
    // Nonce check.
    check_admin_referer('bp_member_invite_submit');
 
    if ( empty( $_POST ) ) {
        bp_core_add_message( __( 'You didn\'t include any email addresses!', 'buddyboss' ), 'error' );
        bp_core_redirect( $bp->loggedin_user->domain . '/invites' );
        die();
    }
 
    $invite_correct_array = array();
    $invite_wrong_array = array();
    foreach ( $_POST['email'] as $key => $value ) {
 
        if ( '' !== $_POST['invitee'][$key][0] && '' !== $_POST['email'][$key][0] && is_email( $_POST['email'][$key][0] ) ) {
            $invite_correct_array[] = array(
                'name' => $_POST['invitee'][$key][0],
                'email' => $_POST['email'][$key][0],
                'member_type' => ( isset( $_POST['member-type'][$key][0] ) && !empty( $_POST['member-type'][$key][0] ) ) ? $_POST['member-type'][$key][0] : '' ,
            );
        } else {
            $invite_wrong_array[] = array(
                'name' => $_POST['invitee'][$key][0],
                'email' => $_POST['email'][$key][0],
                'member_type' => ( isset( $_POST['member-type'][$key][0] ) && !empty( $_POST['member-type'][$key][0] ) ) ? $_POST['member-type'][$key][0] : '' ,
            );
        }
    }
    $query_string = array();
    foreach ( $invite_correct_array as $key => $value ) {
 
        if ( true === bp_disable_invite_member_email_subject() ) {
            $subject = stripslashes( strip_tags( $_POST['bp_member_invites_custom_subject'] ) );
        } else {
            $subject = stripslashes( strip_tags( bp_get_member_invitation_subject() ) );
        }
 
        if ( true === bp_disable_invite_member_email_content() ) {
            $message = stripslashes( strip_tags( $_POST['bp_member_invites_custom_content'] ) );
        } else {
            $message = stripslashes( strip_tags( bp_get_member_invitation_message() ) );
        }
 
        $email = $value['email'];
        $name = $value['name'];
        $member_type = $value['member_type'];
        $query_string[] = $email;
        $inviter_name = bp_core_get_user_displayname( bp_loggedin_user_id() );
 
        $message .= '
 
'.bp_get_member_invites_wildcard_replace( stripslashes( strip_tags( bp_get_invites_member_invite_url() ) ), $email );
 
 
 
        $inviter_name = bp_core_get_user_displayname( bp_loggedin_user_id() );
        $site_name    = get_bloginfo( 'name' );
        $inviter_url  = bp_loggedin_user_domain();
 
        $email_encode = urlencode( $email );
 
        // set post variable
        $_POST['custom_user_email'] = $email;
 
        //  Set both variable which will use in email.
        $_POST['custom_user_name'] = $name;
        $_POST['custom_user_avatar'] = buddypress()->plugin_url . 'bp-core/images/mystery-man.jpg';
 
        $accept_link  = add_query_arg( array(
            'bp-invites' => 'accept-member-invitation',
            'email'    => $email_encode,
        ), bp_get_root_domain() . '/' . bp_get_signup_slug() . '/' );
        $accept_link  = apply_filters( 'bp_member_invitation_accept_url', $accept_link );
        $args = array(
            'tokens' => array(
                'inviter.name' => $inviter_name,
                'invitee.url'  => $accept_link,
            ),
        );
 
        // Send invitation email.
        bp_send_email( 'invites-member-invite', $email, $args );
 
        $insert_post_args = array(
            'post_author'   => $bp->loggedin_user->id,
            'post_content'  => $message,
            'post_title'    => $subject,
            'post_status'   => 'publish',
            'post_type' => bp_get_invite_post_type(),
        );
 
        if ( !$post_id = wp_insert_post( $insert_post_args ) )
            return false;
 
        // Save a blank bp_ia_accepted post_meta
        update_post_meta( $post_id, 'bp_member_invites_accepted', '' );
        update_post_meta( $post_id, '_bp_invitee_email', $email );
        update_post_meta( $post_id, '_bp_invitee_name', $name );
        update_post_meta( $post_id, '_bp_inviter_name', $inviter_name );
        update_post_meta( $post_id, '_bp_invitee_status', 0 );
        update_post_meta( $post_id, '_bp_invitee_member_type', $member_type );
    }
 
    $failed_invite = wp_list_pluck( array_filter( $invite_wrong_array ), 'email' );
    bp_core_redirect( bp_displayed_user_domain() . 'invites/sent-invites?email='.implode (", ", $query_string ).'&failed='.implode (",", array_filter( $failed_invite ) ) );
 
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.