woocommerce/includes/api/wc-rest-coupons-controller.php

46 lines
653 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Coupons controller
*
* Handles requests to the /coupons endpoint.
*
* @author WooThemes
* @category API
* @package WooCommerce/API
* @since 2.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* REST API Coupons controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Controller
*/
class WC_REST_Coupons_Controller extends WC_REST_Controller {
/**
* Route base.
*
* @var string
*/
protected $base = 'coupons';
/**
* Type of object.
*
* @var string
*/
protected $object = 'shop_coupon';
/**
* Register the routes for coupons.
*/
public function register_routes() {
}
}