Plugin Updates
This commit is contained in:
@@ -46,8 +46,8 @@ class WC_API_Coupons extends WC_API_Resource {
|
||||
# GET/PUT/DELETE /coupons/<id>
|
||||
$routes[ $this->base . '/(?P<id>\d+)' ] = array(
|
||||
array( array( $this, 'get_coupon' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'edit_coupon' ), WC_API_SERVER::EDITABLE | WC_API_SERVER::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_coupon' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'edit_coupon' ), WC_API_Server::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_coupon' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# GET /coupons/code/<code>, note that coupon codes can contain spaces, dashes and underscores
|
||||
|
||||
@@ -58,35 +58,35 @@ class WC_API_Customers extends WC_API_Resource {
|
||||
|
||||
# GET/POST /customers
|
||||
$routes[ $this->base ] = array(
|
||||
array( array( $this, 'get_customers' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'create_customer' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'get_customers' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_customer' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET /customers/count
|
||||
$routes[ $this->base . '/count' ] = array(
|
||||
array( array( $this, 'get_customers_count' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'get_customers_count' ), WC_API_Server::READABLE ),
|
||||
);
|
||||
|
||||
# GET/PUT/DELETE /customers/<id>
|
||||
$routes[ $this->base . '/(?P<id>\d+)' ] = array(
|
||||
array( array( $this, 'get_customer' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'edit_customer' ), WC_API_SERVER::EDITABLE | WC_API_SERVER::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_customer' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'get_customer' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'edit_customer' ), WC_API_Server::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_customer' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# GET /customers/email/<email>
|
||||
$routes[ $this->base . '/email/(?P<email>.+)' ] = array(
|
||||
array( array( $this, 'get_customer_by_email' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'get_customer_by_email' ), WC_API_Server::READABLE ),
|
||||
);
|
||||
|
||||
# GET /customers/<id>/orders
|
||||
$routes[ $this->base . '/(?P<id>\d+)/orders' ] = array(
|
||||
array( array( $this, 'get_customer_orders' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'get_customer_orders' ), WC_API_Server::READABLE ),
|
||||
);
|
||||
|
||||
# GET /customers/<id>/downloads
|
||||
$routes[ $this->base . '/(?P<id>\d+)/downloads' ] = array(
|
||||
array( array( $this, 'get_customer_downloads' ), WC_API_SERVER::READABLE ),
|
||||
array( array( $this, 'get_customer_downloads' ), WC_API_Server::READABLE ),
|
||||
);
|
||||
|
||||
# POST|PUT /customers/bulk
|
||||
|
||||
@@ -62,27 +62,27 @@ class WC_API_Orders extends WC_API_Resource {
|
||||
# GET|POST /orders/<id>/notes
|
||||
$routes[ $this->base . '/(?P<order_id>\d+)/notes' ] = array(
|
||||
array( array( $this, 'get_order_notes' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_order_note' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'create_order_note' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET|PUT|DELETE /orders/<order_id>/notes/<id>
|
||||
$routes[ $this->base . '/(?P<order_id>\d+)/notes/(?P<id>\d+)' ] = array(
|
||||
array( array( $this, 'get_order_note' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'edit_order_note' ), WC_API_SERVER::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_order_note' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'edit_order_note' ), WC_API_Server::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_order_note' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# GET|POST /orders/<order_id>/refunds
|
||||
$routes[ $this->base . '/(?P<order_id>\d+)/refunds' ] = array(
|
||||
array( array( $this, 'get_order_refunds' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_order_refund' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'create_order_refund' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET|PUT|DELETE /orders/<order_id>/refunds/<id>
|
||||
$routes[ $this->base . '/(?P<order_id>\d+)/refunds/(?P<id>\d+)' ] = array(
|
||||
array( array( $this, 'get_order_refund' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'edit_order_refund' ), WC_API_SERVER::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_order_refund' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'edit_order_refund' ), WC_API_Server::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_order_refund' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# POST|PUT /orders/bulk
|
||||
|
||||
@@ -37,7 +37,7 @@ class WC_API_Products extends WC_API_Resource {
|
||||
# GET/POST /products
|
||||
$routes[ $this->base ] = array(
|
||||
array( array( $this, 'get_products' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_product' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'create_product' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET /products/count
|
||||
@@ -104,7 +104,7 @@ class WC_API_Products extends WC_API_Resource {
|
||||
# GET/POST /products/attributes
|
||||
$routes[ $this->base . '/attributes' ] = array(
|
||||
array( array( $this, 'get_product_attributes' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_product_attribute' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'create_product_attribute' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET/PUT/DELETE /products/attributes/<id>
|
||||
@@ -117,7 +117,7 @@ class WC_API_Products extends WC_API_Resource {
|
||||
# GET/POST /products/attributes/<attribute_id>/terms
|
||||
$routes[ $this->base . '/attributes/(?P<attribute_id>\d+)/terms' ] = array(
|
||||
array( array( $this, 'get_product_attribute_terms' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'create_product_attribute_term' ), WC_API_SERVER::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'create_product_attribute_term' ), WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
);
|
||||
|
||||
# GET/PUT/DELETE /products/attributes/<attribute_id>/terms/<id>
|
||||
|
||||
@@ -276,7 +276,7 @@ class WC_API_Server {
|
||||
|
||||
// Normalise the endpoints
|
||||
foreach ( $endpoints as $route => &$handlers ) {
|
||||
if ( count( $handlers ) <= 2 && isset( $handlers[1] ) && ! is_array( $handlers[1] ) ) {
|
||||
if ( is_array( $handlers ) && count( $handlers ) <= 2 && isset( $handlers[1] ) && ! is_array( $handlers[1] ) ) {
|
||||
$handlers = array( $handlers );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -46,8 +46,8 @@ class WC_API_Taxes extends WC_API_Resource {
|
||||
# GET/PUT/DELETE /taxes/<id>
|
||||
$routes[ $this->base . '/(?P<id>\d+)' ] = array(
|
||||
array( array( $this, 'get_tax' ), WC_API_Server::READABLE ),
|
||||
array( array( $this, 'edit_tax' ), WC_API_SERVER::EDITABLE | WC_API_SERVER::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_tax' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'edit_tax' ), WC_API_Server::EDITABLE | WC_API_Server::ACCEPT_DATA ),
|
||||
array( array( $this, 'delete_tax' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# GET/POST /taxes/classes
|
||||
@@ -63,7 +63,7 @@ class WC_API_Taxes extends WC_API_Resource {
|
||||
|
||||
# GET /taxes/classes/<slug>
|
||||
$routes[ $this->base . '/classes/(?P<slug>\w[\w\s\-]*)' ] = array(
|
||||
array( array( $this, 'delete_tax_class' ), WC_API_SERVER::DELETABLE ),
|
||||
array( array( $this, 'delete_tax_class' ), WC_API_Server::DELETABLE ),
|
||||
);
|
||||
|
||||
# POST|PUT /taxes/bulk
|
||||
|
||||
Reference in New Issue
Block a user