bp_groups_clear_invite_count_on_send( int $group_id, array $invited_users )

Clear a user’s cached total group invite count when a new invite is sent.


Description Description


Parameters Parameters

$group_id

(Required) The group ID. Not used in this function.

$invited_users

(Required) Array of invited user IDs.


Top ↑

Source Source

File: bp-groups/bp-groups-cache.php

function bp_groups_clear_invite_count_on_send( $group_id, $invited_users ) {
	foreach ( $invited_users as $user_id ) {
		bp_groups_clear_invite_count_for_user( $user_id );
	}
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.