WC_REST_Terms_Controller::batch_items_permissions_check() public WC 1.0
Check if a given request has access batch create, update and delete items.
{} It's a method of the class: WC_REST_Terms_Controller{}
No Hooks.
Return
true/false|WP_Error.
Usage
$WC_REST_Terms_Controller = new WC_REST_Terms_Controller(); $WC_REST_Terms_Controller->batch_items_permissions_check( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Code of WC_REST_Terms_Controller::batch_items_permissions_check() WC REST Terms Controller::batch items permissions check WC 5.0.0
public function batch_items_permissions_check( $request ) {
$permissions = $this->check_permissions( $request, 'batch' );
if ( is_wp_error( $permissions ) ) {
return $permissions;
}
if ( ! $permissions ) {
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;
}