BP_REST_Document_Folder_Endpoint::get_item( WP_REST_Request $request )

Retrieve a single Folder.

Description

Parameters

$request

(Required) Full details about the request.

Return

(WP_REST_Response) | WP_Error

Source

File: bp-document/classes/class-bp-rest-document-folder-endpoint.php

265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
public function get_item( $request ) {
 
    $id = $request['id'];
 
    $folders = $this->assemble_response_data( array( 'folder_ids' => array( $id ) ) );
 
    if ( empty( $folders['folders'] ) ) {
        return new WP_Error(
            'bp_rest_folder_invalid_id',
            __( 'Invalid Folder ID.', 'buddyboss' ),
            array(
                'status' => 404,
            )
        );
    }
 
    $retval = '';
    foreach ( $folders['folders'] as $folder ) {
        $retval = $this->prepare_response_for_collection(
            $this->document_endpoint->prepare_item_for_response( $folder, $request )
        );
    }
 
    $response = rest_ensure_response( $retval );
 
    /**
     * Fires after a folder is fetched via the REST API.
     *
     * @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_document_folder_get_item', $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.