bp_messages_star_bulk_manage_handler()

Bulk manage handler to set the star status for multiple messages.

Description

Source

File: bp-messages/actions/bulk-manage-star.php

14
15
16
17
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
function bp_messages_star_bulk_manage_handler() {
    if ( empty( $_POST['messages_bulk_nonce' ] ) ) {
        return;
    }
 
    // Check the nonce.
    if ( ! wp_verify_nonce( $_POST['messages_bulk_nonce'], 'messages_bulk_nonce' ) ) {
        return;
    }
 
    // Check capability.
    if ( ! is_user_logged_in() || ! bp_core_can_edit_settings() ) {
        return;
    }
 
    $action  = ! empty( $_POST['messages_bulk_action'] ) ? $_POST['messages_bulk_action'] : '';
    $threads = ! empty( $_POST['message_ids'] ) ? $_POST['message_ids'] : '';
    $threads = wp_parse_id_list( $threads );
 
    // Bail if action doesn't match our star actions or no IDs.
    if ( false === in_array( $action, array( 'star', 'unstar' ), true ) || empty( $threads ) ) {
        return;
    }
 
    // It's star time!
    switch ( $action ) {
        case 'star' :
            $count = count( $threads );
 
            // If we're starring a thread, we only star the first message in the thread.
            foreach ( $threads as $thread ) {
                $thread = new BP_Messages_thread( $thread );
                $mids = wp_list_pluck( $thread->messages, 'id' );
 
                bp_messages_star_set_action( array(
                    'action'     => 'star',
                    'message_id' => $mids[0],
                ) );
            }
 
            bp_core_add_message( sprintf( _n( '%s message was successfully starred', '%s messages were successfully starred', $count, 'buddyboss' ), $count ) );
            break;
 
        case 'unstar' :
            $count = count( $threads );
 
            foreach ( $threads as $thread ) {
                bp_messages_star_set_action( array(
                    'action'    => 'unstar',
                    'thread_id' => $thread,
                    'bulk'      => true
                ) );
            }
 
            bp_core_add_message( sprintf( _n( '%s message was successfully unstarred', '%s messages were successfully unstarred', $count, 'buddyboss' ), $count ) );
            break;
    }
 
    // Redirect back to message box.
    bp_core_redirect( bp_displayed_user_domain() . bp_get_messages_slug() . '/' . bp_current_action() . '/' );
    die();
}

Changelog

Changelog
Version Description
BuddyPress 2.3.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.