WC_REST_Customers_V1_Controller::get_item_permissions_check()
Check if a given request has access to read a customer.
Метод класса: WC_REST_Customers_V1_Controller{}
Хуков нет.
Возвращает
WP_Error|true|false
.
Использование
$WC_REST_Customers_V1_Controller = new WC_REST_Customers_V1_Controller(); $WC_REST_Customers_V1_Controller->get_item_permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Код WC_REST_Customers_V1_Controller::get_item_permissions_check() WC REST Customers V1 Controller::get item permissions check WC 9.3.3
public function get_item_permissions_check( $request ) { $id = (int) $request['id']; if ( ! wc_rest_check_user_permissions( 'read', $id ) ) { return new WP_Error( 'woocommerce_rest_cannot_view', __( 'Sorry, you cannot view this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) ); } return true; }