BP_REST_Messages_Endpoint:: search_thread_items (WP_REST_Request美元的请求)
搜索现有线程的用户和收件人的消息。
描述
参数
- 美元的请求
-
(WP_REST_Request)(必需)请求的全部细节。
返回
(WP_REST_Response)| WP_Error
源
文件:bp-messages /类/ class-bp-rest-messages-endpoint.php
Public function search_thread_items($request) {$user_id = $request->get_param('user_id');$request->get_param('recipient_id');If(空($user_id)) {$user_id = bp_loggedin_user_id();} $retval = array();如果(class_exists('BP_Messages_Message') && method_exists('BP_Messages_Message', 'get_existing_thread')) {$thread_id = BP_Messages_Message::get_existing_thread($recipient_id, $user_id);如果(!$this-> = $this-> = $this-> = $this-> = $this->$retval = $this->prepare_response_for_collection($this->prepare_item_for_response($thread, $request));}} $response = rest_ensure_response($retval);/** *通过REST API获取线程id后触发。 * * @since 0.1.0 * * @param WP_REST_Request $request The request sent to the API. * * @param WP_REST_Response $response The response data. */ do_action( 'bp_rest_messages_search_thread_items', $response, $request ); return $response; }
更新日志
版本 | 描述 |
---|---|
0.1.0 | 介绍了。 |