bbp_core_get_tools_settings_admin_tabs( $tabs )

Description

Source

File: bp-forums/admin/functions.php

263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
function bbp_core_get_tools_settings_admin_tabs( $tabs ) {
 
    $tabs[] = array(
        'href' => get_admin_url( '', add_query_arg( array( 'page' => 'bbp-repair', 'tab' => 'bbp-repair' ), 'admin.php' ) ),
        'name' => __( 'Repair Forums', 'buddyboss' ),
        'slug' => 'bbp-repair'
    );
 
//  $tabs[] = array(
//      'href' => get_admin_url( '', add_query_arg( array( 'page' => 'bbp-reset', 'tab' => 'bbp-reset' ), 'admin.php' ) ),
//      'name' => __( 'Reset Forums', 'buddyboss' ),
//      'slug' => 'bbp-reset'
//  );
 
    return $tabs;
}

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.