friends_action_remove_friend()
Catch and process Remove Connection requests.
Description
Source
File: bp-friends/actions/remove-friend.php
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | function friends_action_remove_friend() { if ( !bp_is_friends_component() || !bp_is_current_action( 'remove-friend' ) ) return false; if ( ! $potential_friend_id = (int)bp_action_variable( 0 ) ) return false; if ( $potential_friend_id == bp_loggedin_user_id() ) return false; $friendship_status = BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), $potential_friend_id ); if ( 'is_friend' == $friendship_status ) { if ( !check_admin_referer( 'friends_remove_friend' ) ) return false; if ( !friends_remove_friend( bp_loggedin_user_id(), $potential_friend_id ) ) { bp_core_add_message( __( 'Connection could not be canceled.' , 'buddyboss' ), 'error' ); } else { bp_core_add_message( __( 'Connection canceled' , 'buddyboss' ) ); } } elseif ( 'not_friends' == $friendship_status ) { bp_core_add_message( __( 'You are not connected with this user' , 'buddyboss' ), 'error' ); } else { bp_core_add_message( __( 'You have a pending connection request with this user' , 'buddyboss' ), 'error' ); } bp_core_redirect( wp_get_referer() ); return false; } |
Changelog
Version | Description |
---|---|
BuddyPress 1.0.1 | 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.