BP_Members_MS_List_Table::get_bulk_actions()

Specific bulk actions for signups.

Description

Source

File: bp-members/classes/class-bp-members-ms-list-table.php

157
158
159
160
161
162
163
164
165
166
167
168
public function get_bulk_actions() {
    $actions = array(
        'activate' => __( 'Activate', 'buddyboss' ),
        'resend'   => __( 'Email', 'buddyboss' ),
    );
 
    if ( current_user_can( 'delete_users' ) ) {
        $actions['delete'] = __( 'Delete', 'buddyboss' );
    }
 
    return $actions;
}

Changelog

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