File "class-integrations.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/orderable/inc/class-integrations.php
File size: 577 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Integrations.
*
* Load integrations classes of Orderable plugin.
*
* @package Orderable/Classes
*/
defined( 'ABSPATH' ) || exit;
/**
* Modules class.
*/
class Orderable_Integrations {
/**
* Init.
*/
public static function run() {
self::load_integrations();
}
/**
* Load integrations.
*/
private static function load_integrations() {
require_once ORDERABLE_INC_PATH . 'integrations/woocommerce-points-and-rewards/class-integration-woocommerce-points-and-rewards.php';
Orderable_Integration_WooCommerce_Points_And_Rewards::init();
}
}