woocommerce/includes/api/wc-rest-product-attribute-t...

39 lines
702 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Product Attribute Terms controller
*
* Handles requests to the products/attributes/(?P<attribute_id>[\d]+)/terms endpoint.
*
* @author WooThemes
* @category API
* @package WooCommerce/API
* @since 2.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* REST API Product Attribute Terms controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Controller
*/
class WC_REST_Product_Attribute_Terms_Controller extends WC_REST_Controller {
/**
* Route base.
*
* @var string
*/
2016-02-22 18:49:38 +00:00
protected $rest_base = 'products/attributes/(?P<attribute_id>[\d]+)/terms';
2016-02-17 19:29:09 +00:00
/**
* Register the routes for coupons.
*/
public function register_routes() {
}
}