BP_REST_Activity_Comment_Endpoint::get_items_permissions_check( WP_REST_Request $request )
Check if a given request has access to activity comment.
Description
Parameters
- $request
-
(Required) Full data about the request.
Return
(bool|WP_Error)
Source
File: bp-activity/classes/class-bp-rest-activity-comment-endpoint.php
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | public function get_items_permissions_check( $request ) { $retval = true; if ( function_exists( 'bp_enable_private_network' ) && true !== bp_enable_private_network() && ! is_user_logged_in() ) { $retval = new WP_Error( 'bp_rest_authorization_required' , __( 'Sorry, Restrict access to only logged-in members.' , 'buddyboss' ), array ( 'status' => rest_authorization_required_code(), ) ); } if ( true === $retval && ! bp_is_active( 'activity' ) ) { $retval = new WP_Error( 'bp_rest_component_required' , __( 'Sorry, Activity component was not enabled.' , 'buddyboss' ), array ( 'status' => '404' , ) ); } /** * Filter the activity comment permissions check. * * @param bool|WP_Error $retval Returned value. * @param WP_REST_Request $request The request sent to the API. * * @since 0.1.0 */ return apply_filters( 'bp_rest_activity_comment_get_items_permissions_check' , $retval , $request ); } |
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.