BP_REST_Media_Details_Endpoint::get_items( WP_REST_Request $request )

Retrieve Media details.

Description

Parameters

$request

(Required) Full details about the request.

Return

(WP_REST_Response) | WP_Error

Source

File: bp-media/classes/class-bp-rest-media-details-endpoint.php

73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
public function get_items( $request ) {
    $retval = array();
 
    $retval['tabs']    = $this->get_media_tabs();
    $retval['privacy'] = $this->get_media_privacy();
 
    $response = rest_ensure_response( $retval );
 
    /**
     * Fires after a list of medias details is fetched via the REST API.
     *
     * @since 0.1.0
     *
     * @param WP_REST_Response $response  The response data.
     * @param WP_REST_Request  $request   The request sent to the API.
     */
    do_action( 'bp_rest_media_details_get_items', $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.