PluginProbe
Tiered Pricing Table for WooCommerce / 2.2.3
Tiered Pricing Table for WooCommerce v2.2.3
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
← All changes | freemius/includes/entities/class-fs-user.php +17 -0 2.0.1 → 2.2.3 View file →
@@ -30,8 +30,15 @@
30 30 * @var bool
31 31 */
32 32 public $is_verified;
33 33 /**
34 + * @author Leo Fajardo (@leorw)
35 + * @since 2.3.0
36 + *
37 + * @var bool
38 + */
39 + public $is_beta;
40 + /**
34 41 * @var string|null
35 42 */
36 43 public $customer_id;
37 44 /**
@@ -53,8 +60,18 @@
53 60 }
54 61
55 62 function is_verified() {
56 63 return ( isset( $this->is_verified ) && true === $this->is_verified );
64 + }
65 +
66 + /**
67 + * @author Leo Fajardo (@leorw)
68 + * @since 2.3.0
69 + *
70 + * @return bool
71 + */
72 + function is_beta() {
73 + return ( isset( $this->is_beta ) && true === $this->is_beta );
57 74 }
58 75
59 76 static function get_type() {
60 77 return 'user';