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
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
| 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.