BP_REST_Friends_Endpoint: get_item (WP_REST_Request美元的请求)
检索一个友谊。
描述
参数
- 美元的请求
-
(WP_REST_Request)(必需)关于请求的完整数据。
返回
(WP_REST_Response)| WP_Error
源
文件:bp-friends /类/ class-bp-rest-friends-endpoint.php
public function get_item($request){//获取友谊对象。$friend = $this->get_friendship_object($request['id']);如果(!$friendship || empty($friendship->id)) {return new WP_Error('bp_rest_invalid_id', __('无效的友谊id。', 'buddyboss'), array('status' => 404,));} $retval = $this->prepare_response_for_collection($this->prepare_item_for_response($friendship, $request));$response = rest_ensure_response($retval);/** *在通过REST API检索友情之前触发。* * @param BP_Friends_Friendship $friendship友谊对象。* @param WP_REST_Response $response响应数据。@param WP_REST_Request $request发送给API的请求。 * * @since 0.1.0 */ do_action( 'bp_rest_friends_get_item', $friendship, $response, $request ); return $response; }
更新日志
版本 | 描述 |
---|---|
0.1.0 | 介绍了。 |