PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / includes / core / compatibility / class-wpfnl-compatibility.php

class-wpfnl-compatibility.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at includes/core/compatibility/class-wpfnl-compatibility.php

46 lines 990 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Theme Compatibility
4 *
5 * @package
6 */
7 namespace WPFunnels\Compatibility;
8
9 use WPFunnels\Wpfnl_functions;
10 use WPFunnels\Traits\SingletonTrait;
11 use WPFunnels\Compatibility\Theme\Wpfnl_Theme_Compatibility;
12 use WPFunnels\Compatibility\Plugin\Wpfnl_Plugin_Compatibility;
13
14 class Wpfnl_Compatibility {
15
16
17 /**
18 * Init
19 */
20 public function __construct(){
21 $this->init_theme_compatiblity_class();
22 $this->init_plugin_compatiblity_class();
23 }
24
25 /**
26 * Init theme compatiblity class
27 *
28 * @since 2.7.4
29 */
30 public function init_theme_compatiblity_class(){
31 $theme_compatibility = new Wpfnl_Theme_Compatibility();
32 $theme_compatibility->init_classes();
33 }
34
35
36 /**
37 * Init plugin compatiblity class
38 *
39 * @since 2.7.4
40 */
41 public function init_plugin_compatiblity_class(){
42 $plugin_compatibility = new Wpfnl_Plugin_Compatibility();
43 $plugin_compatibility->init_classes();
44 }
45
46 }