BP_REST_XProfile_Update_Endpoint::update_items_permissions_check( WP_REST_Request $request )
Check if a given request has access to update a XProfile update.
Description
Parameters
- $request
-
(Required) Full data about the request.
Return
(WP_Error|bool)
Source
File: bp-xprofile/classes/class-bp-rest-xprofile-update-endpoint.php
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | public function update_items_permissions_check( $request ) { $retval = true; if ( ! is_user_logged_in() ) { $retval = new WP_Error( 'bp_rest_authorization_required' , __( 'Sorry, you are not allowed to update your profile fields.' , 'buddyboss' ), array ( 'status' => rest_authorization_required_code(), ) ); } $user_id = bp_loggedin_user_id(); if ( empty ( $user_id ) ) { $retval = new WP_Error( 'bp_rest_login_required' , __( 'Sorry, you are not logged in to update fields.' , 'buddyboss' ), array ( 'status' => rest_authorization_required_code(), ) ); } /** * Filter the XProfile updates `update_items` 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_xprofile_update_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.