WC_REST_Payment_Gateways_V2_Controller::get_item_permissions_check() public WC 1.0
Check if a given request has access to read a payment gateway.
{} It's a method of the class: WC_REST_Payment_Gateways_V2_Controller{}
No Hooks.
Return
WP_Error|true/false.
Usage
$WC_REST_Payment_Gateways_V2_Controller = new WC_REST_Payment_Gateways_V2_Controller(); $WC_REST_Payment_Gateways_V2_Controller->get_item_permissions_check( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Code of WC_REST_Payment_Gateways_V2_Controller::get_item_permissions_check() WC REST Payment Gateways V2 Controller::get item permissions check WC 5.0.0
public function get_item_permissions_check( $request ) {
if ( ! wc_rest_check_manager_permissions( 'payment_gateways', 'read' ) ) {
return new WP_Error( 'woocommerce_rest_cannot_view', __( 'Sorry, you cannot view this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) );
}
return true;
}