woocommerce/includes/api/class-wc-rest-product-attri...

28 lines
569 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Product Attribute Terms controller
*
2016-03-30 20:34:36 +00:00
* Handles requests to the products/attributes/<attribute_id>/terms endpoint.
2016-02-17 19:29:09 +00:00
*
2018-03-06 18:04:58 +00:00
* @package WooCommerce/API
* @since 2.6.0
2016-02-17 19:29:09 +00:00
*/
2018-03-06 18:04:58 +00:00
defined( 'ABSPATH' ) || exit;
2016-02-17 19:29:09 +00:00
/**
* REST API Product Attribute Terms controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Product_Attribute_Terms_V1_Controller
2016-02-17 19:29:09 +00:00
*/
class WC_REST_Product_Attribute_Terms_Controller extends WC_REST_Product_Attribute_Terms_V1_Controller {
2016-02-17 19:29:09 +00:00
/**
* Endpoint namespace.
*
* @var string
*/
2017-02-09 17:06:13 +00:00
protected $namespace = 'wc/v2';
2016-02-17 19:29:09 +00:00
}