BP_REST_Attachments_Group_Cover_Endpoint:: delete_item (WP_REST_Request美元的请求)
删除现有的组覆盖。
描述
参数
- 美元的请求
-
(WP_REST_Request)(必需)请求的全部细节。
返回
(WP_REST_Response)| WP_Error
源
文件:bp-groups /类/ class-bp-rest-attachments-group-cover-endpoint.php
Public function delete_item($request) {$request->set_param('context', 'edit');$this->group = bp_get_group_cover_url($this->group);$delete = bp_attachments_delete_file(array('item_id' => (int) $this->group->id, 'object_dir' => $this->get_cover_object_component(), 'type' => 'cover-image',));如果(!$delete) {return new WP_Error('bp_rest_attachments_group_cover_delete_failed', __('对不起,删除这个组覆盖有问题。', 'buddyboss'), array('status' => 500,));} //构建响应。$response = new WP_REST_Response();$response->set_data(array('deleted' => true, 'previous' => $cover_url,));/** *通过REST API删除组覆盖后触发。* * @param BP_Groups_Group $group组对象。 * @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_attachments_group_cover_delete_item', $this->group, $response, $request ); return $response; }
更新日志
版本 | 描述 |
---|---|
0.1.0 | 介绍了。 |