WC_REST_Product_Reviews_Controller::batch_items_permissions_check()
Check if a given request has access batch create, update and delete items.
Метод класса: WC_REST_Product_Reviews_Controller{}
Хуков нет.
Возвращает
true|false|WP_Error
.
Использование
$WC_REST_Product_Reviews_Controller = new WC_REST_Product_Reviews_Controller(); $WC_REST_Product_Reviews_Controller->batch_items_permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Код WC_REST_Product_Reviews_Controller::batch_items_permissions_check() WC REST Product Reviews Controller::batch items permissions check WC 9.4.2
public function batch_items_permissions_check( $request ) { if ( ! wc_rest_check_product_reviews_permissions( 'batch' ) ) { return new WP_Error( 'woocommerce_rest_cannot_batch', __( 'Sorry, you are not allowed to batch manipulate this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) ); } return true; }