bp_nouveau_groups_manage_members_buttons( array $args = array() )
Output the action buttons inside the manage members loop of the group’s manage screen.
Parameters Parameters
- $args
-
(array) (Optional) See bp_nouveau_wrapper() for the description of parameters.
Default value: array()
Source Source
File: bp-templates/bp-nouveau/includes/groups/template-tags.php
function bp_nouveau_groups_manage_members_buttons( $args = array() ) { if ( empty( $GLOBALS['members_template'] ) ) { return; } $args['type'] = 'manage_members'; $output = join( ' ', bp_nouveau_get_groups_buttons( $args ) ); ob_start(); /** * Fires inside the display of a member admin item in group management area. * * @since 1.1.0 */ do_action( 'bp_group_manage_members_admin_item' ); $output .= ob_get_clean(); if ( ! $output ) { return; } if ( ! $args ) { $args = array( 'wrapper' => 'span', 'classes' => array( 'small' ), ); } bp_nouveau_wrapper( array_merge( $args, array( 'output' => $output ) ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |