PluginProbe
Orderable – Restaurant & Food Ordering System / 1.20.0
Orderable – Restaurant & Food Ordering System v1.20.0
0.1.4 0.1.5 0.2.0 1.0.0 1.1.0 1.1.1 1.10.0 1.10.1 1.11.0 1.12.0 1.12.1 1.12.2 1.13.0 1.14.0 1.15.0 1.16.0 1.17.0 1.17.1 1.18.0 1.19.0 1.19.1 1.19.2 1.2.0 1.20.0 1.20.1 All 44 releases
orderable / inc / class-integrations.php

class-integrations.php in Orderable – Restaurant & Food Ordering System 1.20.0, at inc/class-integrations.php

32 lines 577 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Integrations.
4 *
5 * Load integrations classes of Orderable plugin.
6 *
7 * @package Orderable/Classes
8 */
9
10 defined( 'ABSPATH' ) || exit;
11
12 /**
13 * Modules class.
14 */
15 class Orderable_Integrations {
16 /**
17 * Init.
18 */
19 public static function run() {
20 self::load_integrations();
21 }
22
23 /**
24 * Load integrations.
25 */
26 private static function load_integrations() {
27 require_once ORDERABLE_INC_PATH . 'integrations/woocommerce-points-and-rewards/class-integration-woocommerce-points-and-rewards.php';
28
29 Orderable_Integration_WooCommerce_Points_And_Rewards::init();
30 }
31 }
32