BP_REST_Messages_Endpoint::get_item( WP_REST_Request $request )

Get a single thread.


Description Description


Parameters Parameters

$request

(Required) Full data about the request.


Top ↑

Return Return

(WP_REST_Response)


Top ↑

Source Source

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

234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
public function get_item( $request ) {
    $thread = $this->get_thread_object( $request['id'] );
 
    $retval = array(
        $this->prepare_response_for_collection(
            $this->prepare_item_for_response( $thread, $request )
        ),
    );
 
    $response = rest_ensure_response( $retval );
 
    /**
     * Fires after a thread is fetched via the REST API.
     *
     * @since 5.0.0
     *
     * @param BP_Messages_Thread $thread  Thread object.
     * @param WP_REST_Response   $retval  The response data.
     * @param WP_REST_Request    $request The request sent to the API.
     */
    do_action( 'bp_rest_messages_get_item', $thread, $response, $request );
 
    return $response;
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.