BP_REST_Media_Albums_Endpoint::delete_item( WP_REST_Request $request )
Delete a single album.
Description
Parameters
- $request
-
(Required) Full details about the request.
Return
(WP_REST_Response) | WP_Error
Source
File: bp-media/classes/class-bp-rest-media-albums-endpoint.php
public function delete_item( $request ) { $medias = $this->assemble_response_data( array( 'album_ids' => array( $request['id'] ) ) ); if ( empty( $medias['albums'] ) ) { return new WP_Error( 'bp_rest_album_invalid_id', __( 'Invalid Album ID.', 'buddyboss' ), array( 'status' => 404, ) ); } $previous = array(); foreach ( $medias['albums'] as $album ) { $previous = $this->prepare_response_for_collection( $this->prepare_item_for_response( $album, $request ) ); } if ( ! bp_album_user_can_delete( $request['id'] ) ) { return WP_Error( 'bp_rest_authorization_required', __( 'Sorry, you are not allowed to delete this album.', 'buddyboss' ), array( 'status' => rest_authorization_required_code(), ) ); } $status = bp_album_delete( array( 'id' => $request['id'] ) ); // Build the response. $response = new WP_REST_Response(); $response->set_data( array( 'deleted' => $status, 'previous' => $previous, ) ); /** * Fires after a media 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_media_get_item', $response, $request ); return $response; }
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.