BP_Members_MS_List_Table::get_columns()

Specific signups columns.

Description

Return

(array)

Source

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

129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
public function get_columns() {
 
    /**
     * Filters the multisite Members signup columns.
     *
     * @since BuddyPress 2.0.0
     *
     * @param array $value Array of columns to display.
     */
    return apply_filters( 'bp_members_ms_signup_columns', array(
        'cb'         => '<input type="checkbox" />',
        'username'   => __( 'Username',    'buddyboss' ),
        'name'       => __( 'Name',        'buddyboss' ),
        'email'      => __( 'Email',       'buddyboss' ),
        'registered' => __( 'Registered''buddyboss' ),
        'date_sent'  => __( 'Last Sent',   'buddyboss' ),
        'count_sent' => __( 'Emails Sent', 'buddyboss' )
    ) );
}

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.