BP_REST_Attachments_Group_Avatar_Endpoint:: prepare_item_for_response (stdClass |字符串美元的《阿凡达》,WP_REST_Request美元的请求)
准备化身数据作为对象返回。
描述
参数
- 美元的《阿凡达》
-
(stdClass|字符串)(必需)头像对象或字符串与url或图像与html。
- 美元的请求
-
(WP_REST_Request)(必需)请求的全部细节。
返回
(WP_REST_Response)
源
文件:bp-groups /类/ class-bp-rest-attachments-group-avatar-endpoint.php
Public function prepare_item_for_response($avatar, $request) {$data = array('full' => $avatar->full, 'thumb' => $avatar->thumb,);$上下文= !空($request['context']) ?美元请求(“上下文”):“视图”;$data = $this->add_additional_fields_to_object($data, $request);$data = $this->filter_response_by_context($data, $context);// @todo add prepare_links $response = rest_ensure_response($data);/** *过滤从API返回的组头像值。* * @param WP_REST_Response $response响应。* @param WP_REST_Request $request用于生成响应的请求。 * @param stdClass|string $avatar Avatar object or string with url or image with html. * * @since 0.1.0 */ return apply_filters( 'bp_rest_attachments_group_avatar_prepare_value', $response, $request, $avatar ); }
更新日志
版本 | 描述 |
---|---|
0.1.0 | 介绍了。 |