1
|
|
|
<?php |
|
|
|
|
2
|
|
|
/** |
3
|
|
|
* @package Freemius |
4
|
|
|
* @copyright Copyright (c) 2015, Freemius, Inc. |
5
|
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3 |
6
|
|
|
* @since 1.2.2.7 |
7
|
|
|
*/ |
8
|
|
|
|
9
|
|
|
if ( ! defined( 'ABSPATH' ) ) { |
10
|
|
|
exit; |
11
|
|
|
} |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* Class FS_Customizer_Upsell_Control |
15
|
|
|
*/ |
16
|
|
|
class FS_Customizer_Upsell_Control extends WP_Customize_Control { |
|
|
|
|
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Control type |
20
|
|
|
* |
21
|
|
|
* @var string control type |
22
|
|
|
*/ |
23
|
|
|
public $type = 'freemius-upsell-control'; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* @var Freemius |
27
|
|
|
*/ |
28
|
|
|
public $fs = null; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @param WP_Customize_Manager $manager the customize manager class. |
32
|
|
|
* @param string $id id. |
33
|
|
|
* @param array $args customizer manager parameters. |
34
|
|
|
*/ |
35
|
|
|
public function __construct( WP_Customize_Manager $manager, $id, array $args ) { |
36
|
|
|
$manager->register_control_type( 'FS_Customizer_Upsell_Control' ); |
37
|
|
|
|
38
|
|
|
parent::__construct( $manager, $id, $args ); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Enqueue resources for the control. |
43
|
|
|
*/ |
44
|
|
|
public function enqueue() { |
45
|
|
|
fs_enqueue_local_style( 'fs_customizer', 'customizer.css' ); |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* Json conversion |
50
|
|
|
*/ |
51
|
|
|
public function to_json() { |
52
|
|
|
$pricing_cta = esc_html( $this->fs->get_text( $this->fs->get_pricing_cta_label() ) ) . ' ' . ( is_rtl() ? '←' : '➤' ); |
53
|
|
|
|
54
|
|
|
parent::to_json(); |
55
|
|
|
|
56
|
|
|
$this->json['button_text'] = $pricing_cta; |
57
|
|
|
$this->json['button_url'] = $this->fs->is_in_trial_promotion() ? |
58
|
|
|
$this->fs->get_trial_url() : |
59
|
|
|
$this->fs->get_upgrade_url(); |
60
|
|
|
|
61
|
|
|
// Load features. |
62
|
|
|
$pricing = $this->fs->get_api_plugin_scope()->get( 'pricing.json' ); |
63
|
|
|
|
64
|
|
|
if ( $this->fs->is_api_result_object( $pricing, 'plans' ) ) { |
65
|
|
|
// Add support features. |
66
|
|
|
if ( is_array( $pricing->plans ) && 0 < count( $pricing->plans ) ) { |
67
|
|
|
$support_features = array( |
68
|
|
|
'kb' => 'Help Center', |
69
|
|
|
'forum' => 'Support Forum', |
70
|
|
|
'email' => 'Priority Email Support', |
71
|
|
|
'phone' => 'Phone Support', |
72
|
|
|
'skype' => 'Skype Support', |
73
|
|
|
'is_success_manager' => 'Personal Success Manager', |
74
|
|
|
); |
75
|
|
|
|
76
|
|
|
for ( $i = 0, $len = count( $pricing->plans ); $i < $len; $i ++ ) { |
77
|
|
|
if ( 'free' == $pricing->plans[$i]->name ) { |
78
|
|
|
continue; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
if ( ! isset( $pricing->plans[ $i ]->features ) || |
82
|
|
|
! is_array( $pricing->plans[ $i ]->features ) ) { |
83
|
|
|
$pricing->plans[$i]->features = array(); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
foreach ( $support_features as $key => $label ) { |
87
|
|
|
$key = ( 'is_success_manager' !== $key ) ? |
88
|
|
|
"support_{$key}" : |
89
|
|
|
$key; |
90
|
|
|
|
91
|
|
|
if ( ! empty( $pricing->plans[ $i ]->{$key} ) ) { |
92
|
|
|
|
93
|
|
|
$support_feature = new stdClass(); |
94
|
|
|
$support_feature->title = $label; |
95
|
|
|
|
96
|
|
|
$pricing->plans[ $i ]->features[] = $support_feature; |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
$this->json['plans'] = $pricing->plans; |
104
|
|
|
|
105
|
|
|
$this->json['strings'] = array( |
106
|
|
|
'plan' => $this->fs->get_text( 'plan' ), |
107
|
|
|
); |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
/** |
111
|
|
|
* Control content |
112
|
|
|
*/ |
113
|
|
|
public function content_template() { |
114
|
|
|
?> |
115
|
|
|
<div id="fs_customizer_upsell"> |
116
|
|
|
<# if ( data.plans ) { #> |
117
|
|
|
<ul class="fs-customizer-plans"> |
118
|
|
|
<# for (i in data.plans) { #> |
119
|
|
|
<# if ( 'free' != data.plans[i].name && (null != data.plans[i].features && 0 < data.plans[i].features.length) ) { #> |
120
|
|
|
<li class="fs-customizer-plan"> |
121
|
|
|
<div class="fs-accordion-section-open"> |
122
|
|
|
<h2 class="fs-accordion-section-title menu-item"> |
123
|
|
|
<span>{{ data.plans[i].title }}</span> |
124
|
|
|
<button type="button" class="button-link item-edit" aria-expanded="true"> |
125
|
|
|
<span class="screen-reader-text">Toggle section: {{ data.plans[i].title }} {{ data.strings.plan }}</span> |
126
|
|
|
<span class="toggle-indicator" aria-hidden="true"></span> |
127
|
|
|
</button> |
128
|
|
|
</h2> |
129
|
|
|
<div class="fs-accordion-section-content"> |
130
|
|
|
<# if ( data.plans[i].description ) { #> |
131
|
|
|
<h3>{{ data.plans[i].description }}</h3> |
132
|
|
|
<# } #> |
133
|
|
|
<# if ( data.plans[i].features ) { #> |
134
|
|
|
<ul> |
135
|
|
|
<# for ( j in data.plans[i].features ) { #> |
136
|
|
|
<li><div class="fs-feature"> |
137
|
|
|
<span class="dashicons dashicons-yes"></span><span><# if ( data.plans[i].features[j].value ) { #>{{ data.plans[i].features[j].value }} <# } #>{{ data.plans[i].features[j].title }}</span> |
138
|
|
|
<# if ( data.plans[i].features[j].description ) { #> |
139
|
|
|
<span class="dashicons dashicons-editor-help"><span class="fs-feature-desc">{{ data.plans[i].features[j].description }}</span></span> |
140
|
|
|
<# } #> |
141
|
|
|
</div></li> |
142
|
|
|
<# } #> |
143
|
|
|
</ul> |
144
|
|
|
<# } #> |
145
|
|
|
<# if ( 'free' != data.plans[i].name ) { #> |
146
|
|
|
<a href="{{ data.button_url }}" class="button button-primary" target="_blank">{{{ data.button_text }}}</a> |
147
|
|
|
<# } #> |
148
|
|
|
</div> |
149
|
|
|
</div> |
150
|
|
|
</li> |
151
|
|
|
<# } #> |
152
|
|
|
<# } #> |
153
|
|
|
</ul> |
154
|
|
|
<# } #> |
155
|
|
|
</div> |
156
|
|
|
<?php } |
157
|
|
|
} |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.