BP_REST_Friends_Endpoint::get_item( WP_REST_Request $request )

Retrieve single friendship.

Description

Parameters

$request

(Required) Full data about the request.

Return

(WP_REST_Response) | WP_Error

Source

File: bp-friends/classes/class-bp-rest-friends-endpoint.php

255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
public function get_item( $request ) {
 
    // Get friendship object.
    $friendship = $this->get_friendship_object( $request['id'] );
 
    if ( ! $friendship || empty( $friendship->id ) ) {
        return new WP_Error(
            'bp_rest_invalid_id',
            __( 'Invalid friendship ID.', 'buddyboss' ),
            array(
                'status' => 404,
            )
        );
    }
 
    $retval = $this->prepare_response_for_collection(
        $this->prepare_item_for_response( $friendship, $request )
    );
 
    $response = rest_ensure_response( $retval );
 
    /**
     * Fires before a friendship is retrieved via the REST API.
     *
     * @param BP_Friends_Friendship $friendship The 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_get_item', $friendship, $response, $request );
 
    return $response;
}

Changelog

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