Automattic\WooCommerce\Admin\API
ProductAttributeTerms::get_custom_attribute_permissions_check
Check if a given request has access to read a custom attribute.
Метод класса: ProductAttributeTerms{}
Хуков нет.
Возвращает
WP_Error|true|false.
Использование
$ProductAttributeTerms = new ProductAttributeTerms(); $ProductAttributeTerms->get_custom_attribute_permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Код ProductAttributeTerms::get_custom_attribute_permissions_check() ProductAttributeTerms::get custom attribute permissions check WC 10.8.1
public function get_custom_attribute_permissions_check( $request ) {
if ( ! wc_rest_check_manager_permissions( 'attributes', 'read' ) ) {
return new WP_Error(
'woocommerce_rest_cannot_view',
__( 'Sorry, you cannot view this resource.', 'woocommerce' ),
array(
'status' => rest_authorization_required_code(),
)
);
}
return true;
}