BP_REST_Document_Endpoint::delete_item( WP_REST_Request $request )

Delete a single document.

Description

Parameters

$request

(Required) Full details about the request.

Return

(WP_REST_Response) | WP_Error

Source

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

942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
public function delete_item( $request ) {
 
    $id = $request['id'];
 
    $documents = $this->assemble_response_data( array( 'document_ids' => array( $id ) ) );
 
    if ( empty( $documents['documents'] ) ) {
        return new WP_Error(
            'bp_rest_document_invalid_id',
            __( 'Invalid document ID.', 'buddyboss' ),
            array(
                'status' => 404,
            )
        );
    }
 
    $previous = '';
    foreach ( $documents['documents'] as $document ) {
        $previous = $this->prepare_response_for_collection(
            $this->prepare_item_for_response( $document, $request )
        );
    }
 
    if ( ! bp_document_user_can_delete( $id ) ) {
        return WP_Error(
            'bp_rest_authorization_required',
            __( 'Sorry, you are not allowed to delete this document.', 'buddyboss' ),
            array(
                'status' => rest_authorization_required_code(),
            )
        );
    }
 
    $status = bp_document_delete( array( 'id' => $id ), true );
 
    // Build the response.
    $response = new WP_REST_Response();
    $response->set_data(
        array(
            'deleted'  => $status,
            'previous' => $previous,
        )
    );
 
    /**
     * Fires after a document is deleted 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_delete_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.