BP_Members_Admin::signups_admin_index()

This is the list of the Pending accounts (signups).

Description

Source

File: bp-members/classes/class-bp-members-admin.php

2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
public function signups_admin_index() {
    global $plugin_page, $bp_members_signup_list_table;
 
    $usersearch = ! empty( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : '';
 
    // Prepare the group items for display.
    $bp_members_signup_list_table->prepare_items();
 
    if ( is_network_admin() ) {
        $form_url = network_admin_url( 'users.php' );
    } else {
        $form_url = bp_get_admin_url( 'users.php' );
    }
 
    $form_url = add_query_arg(
        array(
            'page' => 'bp-signups',
        ),
        $form_url
    );
 
    $search_form_url = remove_query_arg(
        array(
            'action',
            'deleted',
            'notdeleted',
            'error',
            'updated',
            'delete',
            'activate',
            'activated',
            'notactivated',
            'resend',
            'resent',
            'notresent',
            'do_delete',
            'do_activate',
            'do_resend',
            'action2',
            '_wpnonce',
            'signup_ids'
        ), $_SERVER['REQUEST_URI']
    );
 
    ?>
 
    <div class="wrap">
        <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
 
            <h1 class="wp-heading-inline"><?php _e( 'Users', 'buddyboss' ); ?></h1>
 
            <?php if ( current_user_can( 'create_users' ) ) : ?>
 
                <a href="user-new.php" class="page-title-action"><?php echo esc_html__( 'Add New', 'buddyboss' ); ?></a>
 
            <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
 
                <a href="user-new.php" class="page-title-action"><?php echo esc_html__( 'Add Existing', 'buddyboss' ); ?></a>
 
            <?php endif;
 
            if ( $usersearch ) {
                printf( '<span class="subtitle">' . __( 'Search results for "%s"', 'buddyboss' ) . '</span>', esc_html( $usersearch ) );
            }
            ?>
 
            <hr class="wp-header-end">
 
        <?php else : ?>
 
            <h1><?php _e( 'Users', 'buddyboss' ); ?>
 
                <?php if ( current_user_can( 'create_users' ) ) : ?>
 
                    <a href="user-new.php" class="add-new-h2"><?php echo esc_html__( 'Add New', 'buddyboss' ); ?></a>
 
                <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
 
                    <a href="user-new.php" class="add-new-h2"><?php echo esc_html__( 'Add Existing', 'buddyboss' ); ?></a>
 
                <?php endif;
 
                if ( $usersearch ) {
                    printf( '<span class="subtitle">' . __( 'Search results for "%s"', 'buddyboss' ) . '</span>', esc_html( $usersearch ) );
                }
 
                ?>
            </h1>
 
        <?php endif; ?>
 
        <?php // Display each signups on its own row. ?>
        <?php $bp_members_signup_list_table->views(); ?>
 
        <form id="bp-signups-search-form" action="<?php echo esc_url( $search_form_url ) ;?>">
            <input type="hidden" name="page" value="<?php echo esc_attr( $plugin_page ); ?>" />
            <?php $bp_members_signup_list_table->search_box( __( 'Search Pending Users', 'buddyboss' ), 'bp-signups' ); ?>
        </form>
 
        <form id="bp-signups-form" action="<?php echo esc_url( $form_url );?>" method="post">
            <?php $bp_members_signup_list_table->display(); ?>
        </form>
    </div>
<?php
}

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.