1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
|
<?php
add_action('admin_init', 'layerslider_check_notices'); function layerslider_check_notices() {
add_action('admin_notices', 'layerslider_important_notice');
if( ! empty( $_GET['page'] ) && $_GET['page'] === 'layerslider' ) { add_action('admin_notices', 'layerslider_update_notice'); add_action('admin_notices', 'layerslider_dependency_notice');
if( get_option('ls-show-canceled_activation_notice', 0) ) { add_action('admin_notices', 'layerslider_canceled_activation'); update_user_meta( get_current_user_id(), 'ls-show-support-notice-timestamp', time() - WEEK_IN_SECONDS * 3 );
} else {
if( LS_Config::get('notices') && ! LS_Config::isActivatedSite() ) {
// Make sure to set an initial timestamp for the notice. if( ! $lastCheck = get_user_meta( get_current_user_id(), 'ls-show-support-notice-timestamp', true ) ) { $lastCheck = time() - WEEK_IN_SECONDS * 3; update_user_meta( get_current_user_id(), 'ls-show-support-notice-timestamp', $lastCheck ); }
if( time() - ( DAY_IN_SECONDS * 31 ) > $lastCheck ) { add_action('admin_notices', 'layerslider_premium_support'); } } } }
// Storage notice if(get_option('layerslider-slides') !== false) {
global $pagenow; if($pagenow == 'plugins.php' || $pagenow == 'index.php' || strpos($_SERVER['REQUEST_URI'], 'layerslider')) { add_action('admin_notices', 'layerslider_compatibility_notice'); } }
// License notification under the plugin row on the Plugins screen if( ! LS_Config::isActivatedSite() ) { add_action('after_plugin_row_'.LS_PLUGIN_BASE, 'layerslider_plugins_purchase_notice', 10, 3 ); } }
function layerslider_important_notice() {
// Get data $storeData = get_option('ls-store-data', false); $lastNotice = get_option('ls-last-important-notice', 0);
// Check if there's an important notice if( $storeData && ! empty( $storeData['important_notice'] ) ) {
// Get notice data $notice = $storeData['important_notice'];
// Check notice validity if( ! empty($notice['date']) && ! empty($notice['title']) && ! empty($notice['message']) ) {
// Check date if( $notice['date'] <= $lastNotice ) { return; }
// Check min version (if any) if( ! empty( $notice['min_version'] ) ) { if( version_compare( LS_PLUGIN_VERSION, $notice['min_version'], '<' ) ) { return; } }
// Check max version (if any) if( ! empty( $notice['max_version'] ) ) { if( version_compare( LS_PLUGIN_VERSION, $notice['max_version'], '>' ) ) { return; } }
// Check audience if( ! empty( $notice['unactivated'] ) ) { if( LS_Config::isActivatedSite() ) { return; } }
// Check target pages if( ! empty( $notice['url_filter'] ) ) {
$matches = 0; $fragments = explode( ' ', $notice['url_filter'] );
foreach( $fragments as $fragment ) { if( strpos( $_SERVER['REQUEST_URI'], $fragment ) !== false) { $matches++; break; } }
if( ! $matches ) { return; } }
// Show the notice
if( ! empty( $notice['banner'] ) ) { $bannerStyle = ! empty( $notice['banner']['style'] ) ? $notice['banner']['style'] : ''; $bannerClass = ! empty( $notice['banner']['class'] ) ? $notice['banner']['class'] : '';
?>
<div class="layerslider_notice_img <?php echo $bannerClass ?>" style="<?php echo $bannerStyle ?>">
<?php if( ! empty( $notice['banner']['url'] ) ) : ?> <a href="<?php echo $notice['banner']['url'] ?>" target="<?php echo $notice['banner']['target'] ?>" class="banner_link"></a> <?php endif ?>
<?php if( ! empty( $notice['banner']['content'] ) ) : ?> <?php echo $notice['banner']['content'] ?> <?php endif ?>
<a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-important-notice', 'hide-important-notice') ?>" class="dashicons dashicons-dismiss" data-help="<?php _e('Hide this banner', 'LayerSlider') ?>"></a>
<?php if( ! empty( $notice['button'] ) && ! empty( $notice['button']['text']) ) : ?> <a href="<?php echo $notice['button']['url'] ?>" target="<?php echo $notice['button']['target'] ?>" class="button button-read-more" style="<?php echo ! empty( $notice['button']['style'] ) ? $notice['button']['style'] : ''; ?>"> <?php echo $notice['button']['text'] ?> </a> <?php endif ?> </div>
<?php } else { ?>
<div class="layerslider_notice"> <img src="<?php echo ! empty($notice['image']) ? $notice['image'] : LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php echo $notice['title'] ?></h1> <p> <?php echo $notice['message'] ?> <a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-important-notice', 'hide-important-notice') ?>" class="button button-primary button-hero"><?php _e('OK, I understand', 'LayerSlider') ?></a> </p> <div class="clear"></div> </div>
<?php } } } }
function layerslider_update_notice() {
$activated = LS_Config::isActivatedSite(); $updates = get_plugin_updates(); $latest = get_option( 'ls-latest-version', false );
$last_notification = get_option( 'ls-last-update-notification', LS_PLUGIN_VERSION ); if( ! empty( $updates[ LS_PLUGIN_BASE ]->update->_banner ) ) {
if( version_compare( $last_notification, $latest, '<' ) ) {
$update = $updates[ LS_PLUGIN_BASE ]->update; $banner = $update->_banner;
$bannerStyle = ! empty( $banner['style'] ) ? $banner['style'] : ''; $bannerClass = ! empty( $banner['class'] ) ? $banner['class'] : '';
?> <div class="layerslider_notice_img <?php echo $bannerClass ?>" style="<?php echo $bannerStyle ?>">
<?php if( ! empty( $banner['url'] ) ) : ?> <a href="<?php echo $banner['url'] ?>" target="<?php echo $banner['target'] ?>" class="banner_link"></a> <?php endif ?>
<?php if( ! empty( $banner['content'] ) ) : ?> <?php echo $banner['content'] ?> <?php endif ?>
<?php if( ! $activated ) : ?> <a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-update-notice', 'hide-update-notice') ?>" class="dashicons dashicons-dismiss" data-help="<?php _e('Hide this banner', 'LayerSlider') ?>"></a> <?php endif ?>
<a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin='.LS_PLUGIN_BASE), 'upgrade-plugin_'.LS_PLUGIN_BASE) ?>" class="button button-install" title="<?php _e('Install now', 'LayerSlider') ?>"> <?php _e('Install now', 'LayerSlider') ?> </a> </div> <?php }
} elseif( $activated ) {
// Check for update if( isset( $updates[ LS_PLUGIN_BASE ] ) && isset( $updates[ LS_PLUGIN_BASE ]->update ) ) { $update = $updates[ LS_PLUGIN_BASE ]; $currentVersion = $update->Version; $newVersion = $update->update->new_version;
if( version_compare( $newVersion, $currentVersion, '>' ) ) { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('An update is available for LayerSlider WP!', 'LayerSlider') ?></h1> <p> <?php echo sprintf(__('You have version %1$s. Update to version %2$s.', 'LayerSlider'), $currentVersion, $newVersion); ?><br> <i><?php echo $update->update->upgrade_notice ?></i> <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin='.LS_PLUGIN_BASE), 'upgrade-plugin_'.LS_PLUGIN_BASE) ?>" class="button button-primary button-hero" title="<?php _e('Install now', 'LayerSlider') ?>"> <?php _e('Install now', 'LayerSlider') ?> </a> </p> <div class="clear"></div> </div> <?php } } } elseif( ! $activated ) {
$latest = get_option( 'ls-latest-version', false ); if( $latest && version_compare( LS_PLUGIN_VERSION, $latest, '<' ) ) { $last_notification = get_option( 'ls-last-update-notification', LS_PLUGIN_VERSION ); if( version_compare( $last_notification, $latest, '<' ) ) { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('An update is available for LayerSlider WP!', 'LayerSlider') ?></h1> <p> <?php echo sprintf(__('You have version %1$s. The latest version is %2$s.', 'LayerSlider'), LS_PLUGIN_VERSION, $latest); ?><br> <i><?php _e('New releases contain new features, bug fixes and various improvements across the entire plugin.', 'LayerSlider') ?></i> <i><?php echo sprintf(__('Set up auto-updates to upgrade to this new version, or request it from the author of your theme if you’ve received LayerSlider from them. %sClick here%s to learn more.', 'LayerSlider'), '<a href="https://layerslider.kreaturamedia.com/documentation/#updating" target="_blank">', '</a>') ?></i> <a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-update-notice', 'hide-update-notice') ?>" class="button button-extra"><?php _e('Hide this message', 'LayerSlider') ?></a> </p> <div class="clear"></div> </div><?php } } }
}
function layerslider_compatibility_notice() { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('The new version of LayerSlider WP is almost ready!', 'LayerSlider') ?></h1> <p> <?php _e('For a faster and more reliable solution, LayerSlider WP needs to convert your data associated with the plugin. Your sliders and settings will remain still, and it only takes a click on this button.', 'LayerSlider') ?>
<a href="<?php echo wp_nonce_url('?page=layerslider&action=convert', 'convertoldsliders') ?>" class="button button-primary button-hero"> <?php _e('Convert Data', 'LayerSlider') ?> </a> </p> <div class="clear"></div> </div> <?php }
function layerslider_dependency_notice() { if(version_compare(PHP_VERSION, '5.3.0', '<') || !class_exists('DOMDocument')) { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('Server configuration issues detected!', 'LayerSlider') ?></h1> <p> <?php echo sprintf(__('LayerSlider and its external dependencies require PHP 5.3.0 or newer. Please contact with your web server hosting provider to resolve this issue, as it will likely prevent LayerSlider from functioning properly. %sThis issue could result a blank page in slider builder.%s Check %sSystem Status%s for more information and comprehensive test about your server environment.', 'LayerSlider'), '<strong>', '</strong>', '<a href="'.admin_url('admin.php?page=layerslider-options§ion=system-status').'">', '</a>' ) ?>
<a href="<?php echo admin_url('admin.php?page=layerslider-options§ion=system-status') ?>" class="button button-primary"><?php _e('Check System Status', 'LayerSlider') ?></a> </p> <div class="clear"></div> </div> <?php } }
function layerslider_premium_support() { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('Unlock the full potential of LayerSlider', 'LayerSlider') ?></h1> <p> <?php echo sprintf( __('Activate LayerSlider to unlock premium features, slider templates and other exclusive content & services. Receive live plugin updates with 1-Click installation (including optional early access releases) and premium support. Please read our %sdocumentation%s for more information. %sGot LayerSlider with a theme?%s', 'LayerSlider'), '<a href="https://layerslider.kreaturamedia.com/documentation/#activation" target="_blank">', '</a>', '<a href="https://layerslider.kreaturamedia.com/documentation/#activation-bundles" target="_blank">', '</a>') ?> <a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-support-notice', 'hide-support-notice') ?>" class="button"><?php _e('Hide this message', 'LayerSlider') ?></a> </p> <div class="clear"></div> </div>
<?php }
function layerslider_plugins_purchase_notice( $plugin_file, $plugin_data, $status ) { $table = _get_list_table('WP_Plugins_List_Table'); if( empty( $plugin_data['update'] ) ) { ?> <tr class="plugin-update-tr active ls-plugin-update-row" data-slug="<?php echo LS_PLUGIN_SLUG ?>" data-plugin="<?php echo LS_PLUGIN_BASE ?>"> <td colspan="<?php echo $table->get_column_count(); ?>" class="plugin-update colspanchange"> <div class="update-message notice inline notice-warning notice-alt"> <p> <?php printf(__('License activation is required in order to receive updates and premium support for LayerSlider. %sPurchase a license%s or %sread the documentation%s to learn more. %sGot LayerSlider in a theme?%s', 'installer'), '<a href="'.LS_Config::get('purchase_url').'" target="_blank">', '</a>', '<a href="https://layerslider.kreaturamedia.com/documentation/#activation" target="_blank">', '</a>', '<a href="https://layerslider.kreaturamedia.com/documentation/#activation-bundles" target="_blank">', '</a>'); ?> </p> </div> </td> </tr> <?php } }
function layerslider_canceled_activation() { ?> <div class="layerslider_notice"> <img src="<?php echo LS_ROOT_URL.'/static/admin/img/ls-logo.png' ?>" class="ls-product-icon" alt="LayerSlider icon"> <h1><?php _e('LayerSlider product activation was canceled on this site', 'LayerSlider') ?></h1> <p> <?php _e('LayerSlider was previously activated on this site to receive plugin updates, use exclusive features and access to premium templates in the Template Store. However, your activation was canceled and you can no longer enjoy these benefits. There are a number of potential reasons why this could happen, the common ones include: you’ve remotely deactivated your site using our online tools or asked us to do the same on your behalf; you’re using a non-genuine copy of LayerSlider, your purchase have been refunded or the transaction disputed; Envato have revoked your purchase code with an undisclosed reason.', 'LayerSlider') ?> <br><br> <?php echo sprintf(__('To review all the possible reasons and find out what to do next, please refer to the %sWhy was my activation canceled?%s section in our documentation.', 'LayerSlider'), '<a target="_blank" href="https://layerslider.kreaturamedia.com/documentation/#canceled-activation">', '</a>') ?> <a href="<?php echo wp_nonce_url('?page=layerslider&action=hide-canceled-activation-notice', 'hide-canceled-activation-notice') ?>" class="button button-primary button-hero"><?php _e('OK, I understand', 'LayerSlider') ?></a> </p> <div class="clear"></div> </div> <?php }
|