BP_REST_Attachments_Group_Avatar_Endpoint:: create_item (WP_REST_Request美元的请求)
上传群组头像。
描述
参数
- 美元的请求
-
(WP_REST_Request)(必需)请求的全部细节。
返回
(WP_REST_Response)| WP_Error
源
文件:bp-groups /类/ class-bp-rest-attachments-group-avatar-endpoint.php
Public function create_item($request) {$request->set_param('context', 'edit');//从$_FILES获取图像文件。$ = $请求文件- > get_file_params ();if (empty($files)) {return new WP_Error('bp_rest_attachments_group_avatar_no_image_file', __('对不起,你需要一个图像文件上传。', 'buddyboss'), array('status' => 500,));} //上传头像。$avatar = $this->upload_avatar_from_file($files);If (is_wp_error($avatar)) {return $avatar;} $retval = $this->prepare_response_for_collection($this->prepare_item_for_response($avatar, $request));$response = rest_ensure_response($retval);/** *通过REST API上传组角色后触发。 * * @param stdClass $avatar The group avatar object. * @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_avatar_create_item', $avatar, $response, $request ); return $response; }
更新日志
版本 | 描述 |
---|---|
0.1.0 | 介绍了。 |