WC_REST_Payment_Gateways_V2_Controller::update_items_permissions_check()
Check whether a given request has permission to edit payment gateways.
Метод класса: WC_REST_Payment_Gateways_V2_Controller{}
Хуков нет.
Возвращает
WP_Error|true|false
.
Использование
$WC_REST_Payment_Gateways_V2_Controller = new WC_REST_Payment_Gateways_V2_Controller(); $WC_REST_Payment_Gateways_V2_Controller->update_items_permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Код WC_REST_Payment_Gateways_V2_Controller::update_items_permissions_check() WC REST Payment Gateways V2 Controller::update items permissions check WC 9.3.3
public function update_items_permissions_check( $request ) { if ( ! wc_rest_check_manager_permissions( 'payment_gateways', 'edit' ) ) { return new WP_Error( 'woocommerce_rest_cannot_edit', __( 'Sorry, you are not allowed to edit this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) ); } return true; }