woocommerce/includes/api/wc-rest-product-categories-...

46 lines
737 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Product Categories controller
*
* Handles requests to the products/categories endpoint.
*
* @author WooThemes
* @category API
* @package WooCommerce/API
* @since 2.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* REST API Product Categories controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Terms_Controller
2016-02-17 19:29:09 +00:00
*/
class WC_REST_Product_Categories_Controller extends WC_REST_Terms_Controller {
2016-02-17 19:29:09 +00:00
/**
* Route base.
*
* @var string
*/
2016-02-22 18:49:38 +00:00
protected $rest_base = 'products/categories';
2016-02-17 19:29:09 +00:00
/**
* Type of object.
*
* @var string
*/
protected $object = 'product_cat';
/**
2016-02-23 18:34:55 +00:00
* Register the routes for product categories.
2016-02-17 19:29:09 +00:00
*/
public function register_routes() {
}
}