Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/13/2014 12:58:28 AM (11 years ago)
Author:
imath
Message:

Introduce Sign Ups Management

In Users Administration Screen, a new view is now available to manage the pending accounts of a site or of the network of sites. The following actions are supported:

  • Resend the activation email
  • Delete the pending account
  • Activate the pending account

The corresponding bulk actions are also supported. A search box is available in order to let the administrator easily find some specific pending accounts.

The registration process have also been modified so that multisite and regular configs handles it in a similar way. A mechnanism is in place to ensure plugin backward compatibility concerning the regular configs.

See #5374

props boonebgorges, imath

Fixes #4651

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-members/bp-members-loader.php

    r8090 r8119  
    3838        $includes = array(
    3939            'actions',
     40            'classes',
    4041            'filters',
    4142            'screens',
     
    6970            define( 'BP_MEMBERS_SLUG', $this->id );
    7071
    71         parent::setup_globals( array(
     72        $members_globals = array(
    7273            'slug'          => BP_MEMBERS_SLUG,
    7374            'root_slug'     => isset( $bp->pages->members->slug ) ? $bp->pages->members->slug : BP_MEMBERS_SLUG,
     
    7879            ),
    7980            'search_string' => __( 'Search Members...', 'buddypress' ),
    80         ) );
     81        );
     82
     83        if ( bp_get_signup_allowed() ) {
     84            $members_globals['global_tables']['table_name_signups'] = bp_core_get_table_prefix() . 'signups';
     85        }
     86
     87        parent::setup_globals( $members_globals );
    8188
    8289        /** Logged in user ****************************************************/
Note: See TracChangeset for help on using the changeset viewer.