bp_member_revoke_invite()

Member revoke email invite.

Description

Source

File: bp-invites/actions/revoke-invite.php

function bp_member_revoke_invite() {

	global $bp;

	if ( ! bp_is_invites_component() ) {
		return;
	}

	if ( ! bp_is_my_profile() ) {
		return;
	}

	if ( ! bp_is_post_request() ) {
		return;
	}

	// Bail if not in settings.
	if ( ! bp_is_invites_component() || ! bp_is_current_action( 'revoke-invite' ) ) {
		return;
	}

	// 404 if there are any additional action variables attached
	if ( bp_action_variables() ) {
		bp_do_404();
		return;
	}

	if ( empty( $_POST ) ) {
		bp_core_add_message( __( 'You didn\'t include any email addresses!', 'buddyboss' ), 'error' );
		bp_core_redirect( $bp->loggedin_user->domain . '/invites/sent-invites' );
		die();
	}

	$post_id = filter_input( INPUT_POST, 'item_id', FILTER_VALIDATE_INT );
	if ( isset( $post_id ) && '' !== $post_id ) {
		wp_delete_post( $post_id, true );
	}

	bp_core_add_message( __( 'You didn\'t include any email addresses!', 'buddyboss' ), 'error' );
	bp_core_redirect( bp_displayed_user_domain() . 'invites/' );

}

Changelog

Changelog
Version Description
BuddyBoss 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.