Automattic\WooCommerce\Admin\API
Notes::update_items_permissions_check()
Makes sure the current user has access to WRITE the settings APIs.
Метод класса: Notes{}
Хуков нет.
Возвращает
WP_Error|true|false
.
Использование
$Notes = new Notes(); $Notes->update_items_permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full data about the request.
Код Notes::update_items_permissions_check() Notes::update items permissions check WC 9.3.3
public function update_items_permissions_check( $request ) { if ( ! wc_rest_check_manager_permissions( 'settings', 'edit' ) ) { return new \WP_Error( 'woocommerce_rest_cannot_edit', __( 'Sorry, you cannot edit this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) ); } return true; }