groups_activity_membership_accepted_action
The BuddyPress groups activity membership accepted action hook.
Description
Parameters (1)
- 0. $array (array) =>
array( $action, $user_link, &$group )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'groups_activity_membership_accepted_action', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the groups_activity_membership_accepted_action callback
- function filter_groups_activity_membership_accepted_action( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'groups_activity_membership_accepted_action', 'filter_groups_activity_membership_accepted_action', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'groups_activity_membership_accepted_action', 'filter_groups_activity_membership_accepted_action', 10, 1 );
Defined (2)
The filter is defined in the following location(s).
- /bp-groups/bp-groups-activity.php
- $action = apply_filters_ref_array( 'groups_activity_membership_accepted_action', array( $action, $user_link, &$group ) );
- $action = apply_filters_ref_array( 'groups_activity_membership_accepted_action', array( sprintf( __( '%1$s joined the group %2$s', 'buddypress' ), bp_core_get_userlink( $user_id ), '<a href="' . bp_get_group_permalink( $group ) . '">' . esc_attr( $group->name ) . '</a>' ), $user_id, &$group ) );