BP_Groups_Component::setup_admin_bar( array $wp_admin_nav = array() )
Set up the component entries in the WordPress Admin Bar.
Description Description
See also See also
- BP_Component::setup_nav(): for a description of the $wp_admin_nav parameter array.
Parameters Parameters
- $wp_admin_nav
-
(Optional) See BP_Component::setup_admin_bar() for a description.
Default value: array()
Source Source
File: bp-groups/classes/class-bp-groups-component.php
public function setup_admin_bar( $wp_admin_nav = array() ) {
// Menus for logged in user.
if ( is_user_logged_in() ) {
// Setup the logged in user variables.
$groups_link = trailingslashit( bp_loggedin_user_domain() . bp_get_groups_slug() );
// Pending group invites.
$count = groups_get_invite_count_for_user();
$title = _x( 'Groups', 'My Account Groups', 'buddypress' );
$pending = _x( 'No Pending Invites', 'My Account Groups sub nav', 'buddypress' );
if ( $count ) {
$title = sprintf(
/* translators: %s: Group invitation count for the current user */
_x( 'Groups %s', 'My Account Groups nav', 'buddypress' ),
'<span class="count">' . bp_core_number_format( $count ) . '</span>'
);
$pending = sprintf(
/* translators: %s: Group invitation count for the current user */
_x( 'Pending Invites %s', 'My Account Groups sub nav', 'buddypress' ),
'<span class="count">' . bp_core_number_format( $count ) . '</span>'
);
}
// Add the "My Account" sub menus.
$wp_admin_nav[] = array(
'parent' => buddypress()->my_account_menu_id,
'id' => 'my-account-' . $this->id,
'title' => $title,
'href' => $groups_link
);
// My Groups.
$wp_admin_nav[] = array(
'parent' => 'my-account-' . $this->id,
'id' => 'my-account-' . $this->id . '-memberships',
'title' => _x( 'Memberships', 'My Account Groups sub nav', 'buddypress' ),
'href' => $groups_link,
'position' => 10
);
// Invitations.
$wp_admin_nav[] = array(
'parent' => 'my-account-' . $this->id,
'id' => 'my-account-' . $this->id . '-invites',
'title' => $pending,
'href' => trailingslashit( $groups_link . 'invites' ),
'position' => 30
);
// Create a Group.
if ( bp_user_can_create_groups() ) {
$wp_admin_nav[] = array(
'parent' => 'my-account-' . $this->id,
'id' => 'my-account-' . $this->id . '-create',
'title' => _x( 'Create a Group', 'My Account Groups sub nav', 'buddypress' ),
'href' => trailingslashit( bp_get_groups_directory_permalink() . 'create' ),
'position' => 90
);
}
}
parent::setup_admin_bar( $wp_admin_nav );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |