46 lines
784 B
PHP
46 lines
784 B
PHP
<?php
|
|
/**
|
|
* REST API Product Shipping Classes controller
|
|
*
|
|
* Handles requests to the products/shipping_classes endpoint.
|
|
*
|
|
* @author WooThemes
|
|
* @category API
|
|
* @package WooCommerce/API
|
|
* @since 2.6.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* REST API Product Shipping Classes controller class.
|
|
*
|
|
* @package WooCommerce/API
|
|
* @extends WC_REST_Terms_Controller
|
|
*/
|
|
class WC_REST_Product_Shipping_Classes_Controller extends WC_REST_Terms_Controller {
|
|
|
|
/**
|
|
* Route base.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $rest_base = 'products/shipping_classes';
|
|
|
|
/**
|
|
* Type of object.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $object = 'product_shipping_class';
|
|
|
|
/**
|
|
* Register the routes for product shipping classes.
|
|
*/
|
|
public function register_routes() {
|
|
|
|
}
|
|
}
|