Files
woocommerce-subscriptions/includes/class-wcs-api.php
Prospress Inc 721dda6e5c 2.4.5
2018-12-12 14:48:11 +01:00

60 lines
1.4 KiB
PHP

<?php
/**
* WooCommerce Subscriptions API
*
* Handles WC-API endpoint requests related to Subscriptions
*
* @author Prospress
* @since 2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class WCS_API {
public static function init() {
add_filter( 'woocommerce_api_classes', __CLASS__ . '::includes' );
add_action( 'rest_api_init', __CLASS__ . '::register_routes', 15 );
}
/**
* Include the required files for the REST API and add register the subscription
* API class in the WC_API_Server.
*
* @since 2.0
* @param Array $wc_api_classes WC_API::registered_resources list of api_classes
* @return array
*/
public static function includes( $wc_api_classes ) {
if ( ! defined( 'WC_API_REQUEST_VERSION' ) || 3 == WC_API_REQUEST_VERSION ) {
array_push( $wc_api_classes, 'WC_API_Subscriptions' );
array_push( $wc_api_classes, 'WC_API_Subscriptions_Customers' );
}
return $wc_api_classes;
}
/**
* Load the new REST API subscription endpoints
*
* @since 2.1
*/
public static function register_routes() {
global $wp_version;
if ( version_compare( $wp_version, 4.4, '<' ) || WC_Subscriptions::is_woocommerce_pre( '2.6' ) ) {
return;
}
foreach ( array( 'WC_REST_Subscriptions_Controller', 'WC_REST_Subscription_Notes_Controller' ) as $api_class ) {
$controller = new $api_class();
$controller->register_routes();
}
}
}