bp_core_get_admin_tools_tabs

bp_core_get_admin_tools_tabs

Hook Type: filter

See hook in core

Displaying hooks found in version: buddypress.14.3.3

apply_filters('bp_core_get_admin_tools_tabs') is found 1 times:

  • /bp-core/admin/bp-core-admin-functions.php line 628
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
         * @since 10.0.0
         *
         * @param array $tools_tabs The BP Admin tools tabs.
         */
        $tools_tabs = apply_filters( 'bp_core_get_admin_tools_tabs', $tools_tabs );
     
        // Sort tabs before returning it.
        ksort( $tools_tabs );
     
        return $tools_tabs;
    }