# orderable/1.18.0/inc/class-integrations.php

Orderable – Restaurant &amp; Food Ordering System, version 1.18.0. 32 lines.

- Page: https://pluginprobe.com/plugins/orderable/1.18.0/code/inc/class-integrations.php
- Raw: https://pluginprobe.com/plugins/orderable/1.18.0/raw/inc/class-integrations.php
- Modified: 2024-01-30T13:58:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/orderable/1.18.0/code/inc/class-integrations.php#L10-L20`.

```php
<?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();
	}
}

```
