bp_nouveau_groups_invite_buttons( array $args = array() )

Output the action buttons inside the invites loop of the displayed user.

Description

Parameters

$args

(Optional) See bp_nouveau_wrapper() for the description of parameters.

Default value: array()

Source

File: bp-templates/bp-nouveau/includes/groups/template-tags.php

555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
function bp_nouveau_groups_invite_buttons( $args = array() ) {
    if ( empty( $GLOBALS['groups_template'] ) ) {
        return;
    }
 
    $args['type'] = 'invite';
 
    $output = join( ' ', bp_nouveau_get_groups_buttons( $args ) );
 
    ob_start();
    /**
     * Fires inside the member group item action markup.
     *
     * @since BuddyPress 1.1.0
     */
    do_action( 'bp_group_invites_item_action' );
    $output .= ob_get_clean();
 
    if ( ! $output ) {
        return;
    }
 
    bp_nouveau_wrapper( array_merge( $args, array( 'output' => $output ) ) );
}

Changelog

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.