Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
www
/
wp-content
/
plugins
/
buddypress
/
bp-notifications
/
Filename :
bp-notifications-adminbar.php
back
Copy
<?php /** * BuddyPress Notifications Admin Bar functions. * * Admin Bar functions for the Notifications component. * * @package BuddyPress * @subpackage NotificationsToolbar * @since 1.9.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Build the "Notifications" dropdown. * * @since 1.9.0 * * @global WP_Admin_Bar $wp_admin_bar The WordPress object implementing a Toolbar API. * * @return bool */ function bp_notifications_toolbar_menu() { if ( ! is_user_logged_in() ) { return false; } $notifications = bp_notifications_get_notifications_for_user( bp_loggedin_user_id(), 'object' ); $menu_link = bp_loggedin_user_url( bp_members_get_path_chunks( array( bp_get_notifications_slug() ) ) ); return bp_members_admin_bar_notifications_dropdown( $notifications, $menu_link ); }