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 / funnel / steps / base-steps.php

base-steps.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 2.3.0, at includes/funnel/steps/base-steps.php

44 lines 657 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Sellkit\Funnel\Steps;
4
5 use Sellkit\Database;
6 use Sellkit\Funnel\Contacts\Base_Contacts;
7 use Sellkit_Funnel;
8
9 defined( 'ABSPATH' ) || die();
10
11 /**
12 * Base statistics class.
13 *
14 * @since 1.5.0
15 */
16 class Base_Step {
17
18 /**
19 * SellKit funnel class.
20 *
21 * @var Object|Sellkit_Funnel|null
22 * @since 1.5.0
23 */
24 public $sellkit_funnel;
25
26 /**
27 * SellKit funnel contact class.
28 *
29 * @var Base_Contact
30 * @since 1.5.0
31 */
32 public $contacts;
33
34 /**
35 * Base_Step constructor.
36 *
37 * @since 1.5.0
38 */
39 public function __construct() {
40 $this->sellkit_funnel = Sellkit_Funnel::get_instance();
41 $this->contacts = new Base_Contacts();
42 }
43 }
44