2016-07-21 16:26:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API WC System Status controller
|
|
|
|
*
|
2016-07-27 21:06:14 +00:00
|
|
|
* Handles requests to the /system_status endpoint.
|
2016-07-21 16:26:02 +00:00
|
|
|
*
|
2018-03-06 18:04:58 +00:00
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 3.0.0
|
2016-07-21 16:26:02 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-06 18:04:58 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2016-07-21 16:26:02 +00:00
|
|
|
|
|
|
|
/**
|
2018-03-06 18:04:58 +00:00
|
|
|
* System status controller class.
|
|
|
|
*
|
2016-07-21 16:26:02 +00:00
|
|
|
* @package WooCommerce/API
|
2018-05-17 10:44:46 +00:00
|
|
|
* @extends WC_REST_System_Status_V2_Controller
|
2016-07-21 16:26:02 +00:00
|
|
|
*/
|
2018-05-17 10:44:46 +00:00
|
|
|
class WC_REST_System_Status_Controller extends WC_REST_System_Status_V2_Controller {
|
2016-07-21 16:26:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-05-17 10:44:46 +00:00
|
|
|
protected $namespace = 'wc/v3';
|
2016-07-21 16:26:02 +00:00
|
|
|
}
|