2016-02-17 19:29:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Product Attributes controller
|
|
|
|
*
|
|
|
|
* Handles requests to the products/attributes endpoint.
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category API
|
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Product Attributes controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2017-02-11 14:51:41 +00:00
|
|
|
* @extends WC_REST_Product_Attributes_V1_Controller
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
2017-02-11 14:51:41 +00:00
|
|
|
class WC_REST_Product_Attributes_Controller extends WC_REST_Product_Attributes_V1_Controller {
|
2016-02-17 19:29:09 +00:00
|
|
|
|
2016-03-07 18:36:17 +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
|
|
|
}
|