2016-03-12 08:15:30 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Webhooks controller
|
|
|
|
*
|
|
|
|
* Handles requests to the /webhooks endpoint.
|
|
|
|
*
|
2018-03-06 18:04:58 +00:00
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
2016-03-12 08:15:30 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-06 18:04:58 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2016-03-12 08:15:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Webhooks controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2018-05-17 10:44:46 +00:00
|
|
|
* @extends WC_REST_Webhooks_V2_Controller
|
2016-03-12 08:15:30 +00:00
|
|
|
*/
|
2018-05-17 10:44:46 +00:00
|
|
|
class WC_REST_Webhooks_Controller extends WC_REST_Webhooks_V2_Controller {
|
2016-03-12 08:15:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-05-17 10:44:46 +00:00
|
|
|
protected $namespace = 'wc/v3';
|
2018-10-29 22:31:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the default REST API version.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function get_default_api_version() {
|
|
|
|
return 'wp_api_v3';
|
|
|
|
}
|
2016-03-12 08:15:30 +00:00
|
|
|
}
|