PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.6.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.6.0
2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 1.8.1 All 42 releases
sellkit / includes / compatibility / module.php

module.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 2.6.0, at includes/compatibility/module.php

30 lines 477 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Sellkit\Compatibility;
3
4 use Sellkit\Compatibility\Wpml;
5
6 defined( 'ABSPATH' ) || die();
7
8 /**
9 * Sellkit compatibility module.
10 *
11 * Sellkit compatibility module handler class is responsible for registering and
12 * managing 3rd-party compatibility with Sellkit.
13 *
14 * @since 2.3.2
15 */
16 class Module {
17
18 /**
19 * Constructor.
20 *
21 * @since 2.3.2
22 */
23 public function __construct() {
24 // Instantiate compatibility modules.
25 new Wpml\Module();
26 }
27 }
28
29 new Module();
30