PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.3.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.3.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 / elementor / modules / checkout / module.php

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

27 lines 491 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || die();
4
5 use Sellkit\Elementor\Modules\Checkout\Classes\Global_Hooks;
6
7 class Sellkit_Elementor_Checkout_Module extends Sellkit_Elementor_Base_Module {
8
9 public function get_widgets() {
10 return [ 'checkout' ];
11 }
12
13 public function __construct() {
14 parent::__construct();
15
16 new Global_Hooks();
17 }
18
19 public static function is_active() {
20 return function_exists( 'WC' );
21 }
22
23 public static function templates_path() {
24 return plugin_dir_path( __FILE__ );
25 }
26 }
27