BP_Buttons_Group::get( bool $sort = true )

Get the BuddyPress buttons for the group

Description

Parameters

$sort

(Optional) whether to sort the buttons or not.

Default value: true

Return

(array) An array of HTML links.

Source

File: bp-templates/bp-nouveau/includes/classes.php

157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
public function get( $sort = true ) {
    $buttons = array();
 
    if ( empty( $this->group ) ) {
        return $buttons;
    }
 
    if ( true === $sort ) {
        $this->group = $this->sort( $this->group );
    }
 
    foreach ( $this->group as $key_button => $button ) {
        // Reindex with ids.
        if ( true === $sort ) {
            $this->group[ $button['id'] ] = $button;
            unset( $this->group[ $key_button ] );
        }
 
        $buttons[ $button['id'] ] = bp_get_button( $button );
    }
 
    return $buttons;
}

Changelog

Changelog
Version Description
BuddyPress 3.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.