2016-03-10 02:19:36 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Reports controller
|
|
|
|
*
|
2016-03-10 02:51:25 +00:00
|
|
|
* Handles requests to the reports/sales endpoint.
|
2016-03-10 02:19:36 +00:00
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category API
|
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Report Sales controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2017-02-11 14:51:41 +00:00
|
|
|
* @extends WC_REST_Report_Sales_V1_Controller
|
2016-03-10 02:19:36 +00:00
|
|
|
*/
|
2017-02-11 14:51:41 +00:00
|
|
|
class WC_REST_Report_Sales_Controller extends WC_REST_Report_Sales_V1_Controller {
|
2016-03-10 02:19:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-09 17:06:13 +00:00
|
|
|
protected $namespace = 'wc/v2';
|
2016-03-10 02:19:36 +00:00
|
|
|
}
|