This function has been deprecated. BuddyPress 2.1.0 instead.
bp_groups_adminbar_admin_menu()
Add menu items to the BuddyBar.
Description
Source
File: bp-core/deprecated/buddypress/2.1.php
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | function bp_groups_adminbar_admin_menu() { $bp = buddypress(); if ( empty ( $bp ->groups->current_group ) ) { return false; } // Only group admins and site admins can see this menu if ( !current_user_can( 'edit_users' ) && !bp_current_user_can( 'bp_moderate' ) && !bp_is_item_admin() ) { return false; } ?> <li id= "bp-adminbar-adminoptions-menu" > <a href= "<?php bp_groups_action_link( 'admin' ); ?>" ><?php _e( 'Admin Options' , 'buddyboss' ); ?></a> <ul> <li><a href= "<?php bp_groups_action_link( 'admin/edit-details' ); ?>" ><?php _e( 'Edit Details' , 'buddyboss' ); ?></a></li> <li><a href= "<?php bp_groups_action_link( 'admin/group-settings' ); ?>" ><?php _e( 'Group Settings' , 'buddyboss' ); ?></a></li> <?php if ( !(int)bp_get_option( 'bp-disable-avatar-uploads' ) && $bp ->avatar->show_avatars ) : ?> <li><a href= "<?php bp_groups_action_link( 'admin/group-avatar' ); ?>" ><?php _e( 'Group Profile Photo' , 'buddyboss' ); ?></a></li> <?php endif ; ?> <?php if ( bp_is_active( 'friends' ) ) : ?> <li><a href= "<?php bp_groups_action_link( 'send-invites' ); ?>" ><?php _e( 'Manage Invitations' , 'buddyboss' ); ?></a></li> <?php endif ; ?> <li><a href= "<?php bp_groups_action_link( 'admin/manage-members' ); ?>" ><?php _e( 'Manage Members' , 'buddyboss' ); ?></a></li> <?php if ( $bp ->groups->current_group->status == 'private' ) : ?> <li><a href= "<?php bp_groups_action_link( 'admin/membership-requests' ); ?>" ><?php _e( 'Membership Requests' , 'buddyboss' ); ?></a></li> <?php endif ; ?> <li><a class = "confirm" href= "<?php echo wp_nonce_url( bp_get_group_permalink( $bp->groups->current_group ) . 'admin/delete-group/', 'groups_delete_group' ); ?>&delete-group-button=1&delete-group-understand=1" ><?php _e( "Delete Group" , 'buddyboss' ) ?></a></li> <?php do_action( 'bp_groups_adminbar_admin_menu' ) ?> </ul> </li> <?php } |
Changelog
Version | Description |
---|---|
BuddyPress 2.1.0 | BuddyPress 2.1.0 |
BuddyPress 1.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.