BP_REST_Friends_Endpoint:: delete_items (WP_REST_Request美元的请求

Unfriend友谊。

描述

参数

美元的请求

WP_REST_Request(必需)请求的全部细节。

返回

(WP_REST_Response)| WP_Error

文件:bp-friends /类/ class-bp-rest-friends-endpoint.php

Public function delete_items($request) {$request->set_param('context', 'edit');if (empty($request['friend_id'])) {return new WP_Error('bp_rest_invalid_id', __('无效的朋友成员ID。', 'buddyboss'), array('status' => 404,));} //检查user是否有效。美元$ user = get_user_by(“id”,请求[' friend_id ']);如果(!$user instanceof WP_User) {return new WP_Error('bp_rest_invalid_friend_user', __('确认朋友用户是否是一个有效的问题。', 'buddyboss'), array('status' => 500,));} $user_id = bp_loggedin_user_id();friend_id =美元请求(“friend_id”);$friendship_id = BP_Friends_Friendship::get_friendship_id($user_id, $friend_id);$this = $this->get_friendship_object($friendship_id); $previous = $this->prepare_item_for_response( $friendship, $request ); if ( 'is_friend' === BP_Friends_Friendship::check_is_friend( $user_id, $friend_id ) && friends_remove_friend( $user_id, $friend_id ) ) { $status = true; } else { $status = new WP_Error( 'bp_rest_friends_cannot_unfriend_friendship', __( 'Connection could not be cancelled.', 'buddyboss' ), array( 'status' => 500, ) ); } // Build the response. $response = new WP_REST_Response(); $response->set_data( array( 'unfriend' => $status, 'previous' => $previous->get_data(), ) ); /** * Fires after a friendship is deleted via the REST API. * * @param BP_Friends_Friendship $friendship Friendship object. * @param WP_REST_Response $response The response data. * @param WP_REST_Request $request The request sent to the API. * * @since 0.1.0 */ do_action( 'bp_rest_friends_delete_items', $friendship, $response, $request ); return $response; }

更新日志

更新日志
版本 描述
0.1.0 介绍了。

问题吗?

我们总是很乐意帮助您解决代码或其他问题!搜索我们的开发人员文档联络支持,或与我们联系销售团队