BP_Notifications_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-notifications/classes/class-bp-notifications-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.
$notifications_link = trailingslashit( bp_loggedin_user_domain() . bp_get_notifications_slug() );
// Pending notification requests.
$count = bp_notifications_get_unread_notification_count( bp_loggedin_user_id() );
if ( ! empty( $count ) ) {
$title = sprintf(
/* translators: %s: Unread notification count for the current user */
_x( 'Notifications %s', 'My Account Notification pending', 'buddypress' ),
'<span class="count">' . bp_core_number_format( $count ) . '</span>'
);
$unread = sprintf(
/* translators: %s: Unread notification count for the current user */
_x( 'Unread %s', 'My Account Notification pending', 'buddypress' ),
'<span class="count">' . bp_core_number_format( $count ) . '</span>'
);
} else {
$title = _x( 'Notifications', 'My Account Notification', 'buddypress' );
$unread = _x( 'Unread', 'My Account Notification sub nav', 'buddypress' );
}
// Add the "My Account" sub menus.
$wp_admin_nav[] = array(
'parent' => buddypress()->my_account_menu_id,
'id' => 'my-account-' . $this->id,
'title' => $title,
'href' => $notifications_link
);
// Unread.
$wp_admin_nav[] = array(
'parent' => 'my-account-' . $this->id,
'id' => 'my-account-' . $this->id . '-unread',
'title' => $unread,
'href' => $notifications_link,
'position' => 10
);
// Read.
$wp_admin_nav[] = array(
'parent' => 'my-account-' . $this->id,
'id' => 'my-account-' . $this->id . '-read',
'title' => _x( 'Read', 'My Account Notification sub nav', 'buddypress' ),
'href' => trailingslashit( $notifications_link . 'read' ),
'position' => 20
);
}
parent::setup_admin_bar( $wp_admin_nav );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |