header.php
28.7 KB
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!--Header-->
<?php
$curPageTitle = get_admin_page_title();
$wpUserData = wp_get_current_user();
$meta = B2S_Meta::getInstance();
$generalOptions = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
$b2sActive = $meta->is_b2s_active();
$showYoast = ($_GET['page'] == 'blog2social-settings' && $meta->is_yoast_seo_active() && $b2sActive) ? 'block' : 'none';
$showAioseop = ($meta->is_aioseop_active() && $b2sActive) ? 'block' : 'none';
$showWebdaos = ($meta->is_webdados_active() && $b2sActive) ? 'block' : 'none';
$getPages = unserialize(B2S_PLUGIN_PAGE_TITLE);
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
$autoPostLimit = 'none';
$gmbAutoPostLimit = 'none';
$autoPostCon = $options->_getOption('auto_post_import_condition');
if ($autoPostCon !== false && is_array($autoPostCon) && isset($autoPostCon['count'])) {
$con = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
$autoPostLimit = ($autoPostCon['count'] == $con[B2S_PLUGIN_USER_VERSION]) ? 'block' : 'none';
$gmbAutoPostLimit = (isset($autoPostCon['gmb_limit']) && (int) $autoPostCon['gmb_limit'] == 1) ? (($autoPostLimit == 'block') ? 'none' : 'block') : 'none';
}
$b2sLastVersion = get_option('b2s_plugin_version');
$b2sPrivacyPolicy = get_option('B2S_PLUGIN_PRIVACY_POLICY_USER_ACCEPT_' . B2S_PLUGIN_BLOG_USER_ID);
$showPrivacyPolicy = false;
if ($b2sPrivacyPolicy !== false) {
$b2sPrivacyPolicy = unserialize(base64_decode($b2sPrivacyPolicy));
if (is_array($b2sPrivacyPolicy) && $b2sPrivacyPolicy !== false && isset($b2sPrivacyPolicy[substr(B2S_LANGUAGE, 0, 2)])) {
$showPrivacyPolicy = true;
$b2sPrivacyPolicy = $b2sPrivacyPolicy[substr(B2S_LANGUAGE, 0, 2)];
}
}
?>
<!--<h1><?php echo (!empty($curPageTitle) ? $curPageTitle : ((isset($getPages[$_GET['page']]) && !empty($getPages[$_GET['page']])) ? $getPages[$_GET['page']] : '' )); ?></h1>-->
<div class="b2s-support-area hidden-md hidden-lg">
<a href="admin.php?page=blog2social-support" class="btn btn-primary btn-block"> <?php esc_html_e('Help & Support', 'blog2social'); ?></a>
</div>
<!--Info System-->
<?php if (version_compare(phpversion(), '5.5.3', '<')) { ?>
<div class="panel panel-group">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("To use all features of Blog2Social, PHP version 5.5.3 or higher is required. Our support assists you as of PHP version 5.5.3. See also:", "blog2social"); ?>
<a href="admin.php?page=blog2social-support#b2s-support-check-system"><?php esc_html_e('Blog2Social Troubleshooting-Tool', 'blog2social'); ?></a>
</div>
</div>
<?php } ?>
<div class="panel panel-group b2s-heartbeat-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social! See also:', 'blog2social'); ?>
<a href="admin.php?page=blog2social-support#b2s-support-check-system"><?php esc_html_e('Blog2Social Troubleshooting-Tool', 'blog2social'); ?></a>
</div>
</div>
<div class="panel panel-group b2s-server-connection-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('The connection to the server failed. Try again!', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-nonce-check-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('The link you followed has expired. Please refresh your page.', 'blog2social'); ?>
</div>
</div>
<!--Info Mail Update -->
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-mail-update-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Thank you. You\'ll now receive the blog updates from Blog2Social.', 'blog2social'); ?>
</div>
</div>
<!--Info Auto Post-->
<div class="panel panel-group b2s-auto-posting" style="display: <?php echo $autoPostLimit; ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Autoposter limit has been reached', 'blog2social') ?> <br> <?php esc_html_e('Your daily limit for posting automatically has been reached.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-auto-posting" style="display: <?php echo $gmbAutoPostLimit; ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('The Autoposter limit for Google My Business has been reached.', 'blog2social') ?> <br> <?php esc_html_e('Your daily limit of 10 posts per day for auto-posting on Google My Business has been reached.', 'blog2social'); ?>
</div>
</div>
<!--Info Meta Tags -->
<div class="panel panel-group b2s-clear-meta-tags b2s-clear-meta-tags-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('You have deleted all meta data for posts and pages successfully.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-clear-meta-tags b2s-clear-meta-tags-error" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('The page and post meta data could not be removed.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-meta-tags-yoast b2s-meta-tags-success" style="display:<?php echo $showYoast; ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta tags from Yoast SEO.', 'blog2social'); ?>
</div>
</div>
<!--<div class="panel panel-group b2s-meta-tags-aioseop b2s-meta-tags-danger" style="display:<?php echo $showAioseop; ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('You currently have both Blog2Social Social Meta Tags and All in One SEO Pack plugins active. To make sure that your Social Meta Tags are set correctly, please deactivate All in One Seo Social Meta settings. If they are already deactivated, you can ignore this message.', 'blog2social'); ?>
</div>
</div>-->
<div class="panel panel-group b2s-meta-tags-webdados b2s-meta-tags-danger" style="display:<?php echo $showWebdaos; ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Blog2Social has detected another plugin that is setting Social Meta tags for your blog posts. To ensure that your Social Meta tags are set correctly for your social media posts shared with Blog2Social, please deactivate the Facebook Open Graph and Twitter Card Tags settings in your other plugins.', 'blog2social'); ?>
</div>
</div>
<!--Info-Post-->
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-post-remove-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('This entry could not be removed. It\'s not yours!', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-post-remove-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('This entry was removed successfully.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-post-edit-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('This post was edited successfully.', 'blog2social'); ?>
</div>
</div>
<?php if (isset($_GET['origin']) && $_GET['origin'] == 'save_post' && isset($_GET['postStatus'])) { ?>
<div class="panel panel-group b2s-network-auth-info">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span>
<?php
if ($_GET['postStatus'] == 'future') {
echo esc_html__('Post was scheduled successfully on your blog!', 'blog2social');
} else {
echo esc_html__('Post is published successfully on your blog!', 'blog2social');
}
?>
</div>
</div>
<?php } ?>
<div class="b2s-trail-tracking" style="display: none;">
<img height="1" width="1" style="border-style:none;" id="b2s-trail-tracking-src" alt="b2s-trail-tracking"/>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-post-draft-saved-success" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Saved as draft', 'blog2social'); ?>
<button class="close b2s-network-auth-info-close"><span aria-hidden="true">×</span></button>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-post-draft-saved-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Could not save draft', 'blog2social'); ?>
<button class="close b2s-network-auth-info-close"><span aria-hidden="true">×</span></button>
</div>
</div>
<!--Info-Network-->
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-network-auth-success" style="display: none">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Your authorization was successful.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-network-add-mandant-success" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Your profile was saved successful.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-network-add-mandant-error" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Your profile could not be saved.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-network-remove-fail" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Your authorization could not be removed.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-network-remove-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Your authorization has been removed successfully.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-feedback-success" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Thank you! Your feedback has been received.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-feedback-fail" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Your feedback could not be delivered.', 'blog2social'); ?>
</div>
</div>
<!-- Info-Settings-->
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-settings-user-success" style="display:<?php echo (isset($_GET['b2s-settings-user-success']) ? 'block' : 'none'); ?>;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Your settings were successfully saved.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-settings-user-error" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Your settings could not be saved.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-danger b2s-settings-user-error-no-auth-selected" style="display:none;">
<div class="panel-body">
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Your settings could not be saved, because you have auto-posting enabled but no social networks selected.', 'blog2social'); ?>
</div>
</div>
<div class="panel panel-group b2s-network-auth-info b2s-left-border-success b2s-ship-settings-save" style="display: none;">
<div class="panel-body">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Your settings were successfully saved.', 'blog2social'); ?>
</div>
</div>
<!--Rating-->
<?php if (!B2S_System::isblockedArea('', B2S_PLUGIN_ADMIN, true)) { ?>
<!--Info-Trail-->
<?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END") && !get_option('B2S_HIDE_PREMIUM_MESSAGE') && (isset($_GET['page']) && in_array($_GET['page'], array("blog2social", "blog2social-post", "blog2social-sched", "blog2social-publish", "blog2social-calendar")))) { ?>
<div class="panel panel-group b2s-trail-premium-info-area b2s-notice">
<div class="panel-body">
<div class="b2s-hide-premium-message b2s-close"><i class="glyphicon glyphicon-remove"></i></div>
<h2 style="margin-top:0;font-size:20px;"><?php esc_html_e('Start your free 30-day-Premium-trial', 'blog2social'); ?></h2>
<p>
<?php esc_html_e('Check out Blog2Social Premium with more awesome features for scheduling and sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-days for free. The trial is free of charge, without any obligations, no automatic subscription. Basic features of the Free Version are free forever.', 'blog2social'); ?>
</p>
<p class="b2s-notice-buttons">
<a href="#" class="b2s-text-underline b2s-trial-modal-btn">
<?php esc_html_e('Yes, I want to test Blog2Social Premium 30 days for free', 'blog2social'); ?>
</a>
</p>
</div>
</div>
<?php } ?>
<?php if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) > strtotime(gmdate('Y-m-d H:i:s')) && !get_option('B2S_HIDE_TRAIL_MESSAGE') && (isset($_GET['page']) && in_array($_GET['page'], array("blog2social", "blog2social-post", "blog2social-sched", "blog2social-publish", "blog2social-calendar")))) { ?>
<div class="panel panel-group b2s-trail-premium-info-area b2s-notice">
<div class="panel-body">
<div class="b2s-hide-trail-message b2s-close"><i class="glyphicon glyphicon-remove"></i></div>
<h2 style="margin-top:0;font-size:20px;">
<?php esc_html_e('Your free Blog2Social Premium trial version is activated for ', 'blog2social'); ?>
<?php
$days = B2S_Util::getTrialRemainingDays(B2S_PLUGIN_TRAIL_END, date_default_timezone_get());
echo $days > 0 ? ("<span style='color:#79B232'>" . $days . "</span>" . esc_html__(' Days', 'blog2social')) : "<span style='color:#f33'>" . esc_html__(' today', 'blog2social') . "</span>";
?>
</h2>
<p>
<?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features.', 'blog2social'); ?>
</p>
<p class="b2s-notice-buttons">
<a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Upgrade to PREMIUM', 'blog2social'); ?></a>
<a href="#" class="b2s-hide-trail-message b2s-text-underline"><?php esc_html_e('I need some more time to decide', 'blog2social'); ?></a>
</p>
</div>
</div>
<?php } ?>
<?php if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < strtotime(gmdate('Y-m-d H:i:s')) && !get_option('B2S_HIDE_TRAIL_ENDED') && (isset($_GET['page']) && in_array($_GET['page'], array("blog2social", "blog2social-post", "blog2social-sched", "blog2social-publish", "blog2social-calendar")))) { ?>
<div class="panel panel-group b2s-trail-premium-info-area b2s-notice">
<div class="panel-body">
<div class="b2s-hide-trail-ended-modal b2s-close"><i class="glyphicon glyphicon-remove"></i></div>
<h2 style="margin-top:0;font-size:20px;">
<?php esc_html_e('Your free trial of Blog2Social PREMIUM has ended.', 'blog2social'); ?>
<?php esc_html_e('We hope you liked Blog2Social Premium.', 'blog2social'); ?>
</h2>
<p>
<?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features.', 'blog2social'); ?>
</p>
<p class="b2s-notice-buttons">
<a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Yes, I want to upgrade to Blog2Social Premium', 'blog2social'); ?></a>
<a href="#" class="b2s-text-underline b2s-hide-trail-ended-modal"><?php esc_html_e('I need some more time to decide', 'blog2social'); ?></a>
<a href="#" class="b2s-text-underline b2s-show-feedback-modal"><?php esc_html_e('Did you miss something? Tell us!', 'blog2social'); ?></a>
</p>
</div>
</div>
<?php } ?>
<?php } ?>
<!--Header-->
<!-- B2S-Trial -->
<div id="b2s-trial-modal" class="modal fade" role="dialog" aria-labelledby="b2s-trial-modal" aria-hidden="true" data-backdrop="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="b2s-modal-close close" data-modal-name="#b2s-trial-modal">×</button>
<h4 class="modal-title"><?php esc_html_e('Test Blog2Social PREMIUM 30 days for free', 'blog2social'); ?></h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-xs-12">
<div class="alert alert-danger b2s-trail-modal-fail" style="display:none;">
<?php esc_html_e('The free trial can not be started. This blog has been already registered for the free trial.', 'blog2social'); ?>
</div>
<div class="form-group col-xs-12">
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Social Media Auto-Posting', 'blog2social'); ?><br>
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Post on pages and groups', 'blog2social'); ?><br>
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share on multiple accounts per network', 'blog2social'); ?><br>
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Best Time Scheduler: Schedule once, multiple times or recurringly.', 'blog2social'); ?><br>
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Reporting with links to all published social media posts', 'blog2social'); ?><br>
</div>
<div class="form-group col-xs-12">
<label for="trial_email"><?php esc_html_e('E-Mail', 'blog2social'); ?></label>
<input id="trial_email" class="form-control" type="email" value="<?php echo $wpUserData->user_email; ?>" name="trial_email">
</div>
<div class="form-group col-xs-12 col-md-6">
<label for="trial_vorname"><?php esc_html_e('First Name', 'blog2social'); ?></label>
<input id="trial_vorname" class="form-control" type="text" value="<?php echo $wpUserData->user_firstname; ?>" name="trial_vorname">
</div>
<div class="form-group col-xs-12 col-md-6">
<label for="trial_nachname"><?php esc_html_e('Last Name', 'blog2social'); ?></label>
<input id="trial_nachname" class="form-control" type="text" value="<?php echo $wpUserData->user_lastname; ?>" name="trial_nachname">
</div>
<div class="col-xs-12">
<p>
<?php
echo sprintf(__('By creating an account, you agree to Blog2Social\'s <a target="_blank" href="%s">Conditions of Use</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('term')));
echo sprintf(__('and <a target="_blank" href="%s">Privacy Notice</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('privacy_policy')));
?>
</p>
<br>
</div>
<div class="col-xs-12">
<div class="pull-left">
<span class="glyphicon glyphicon-info-sign glyphicon-primary"></span> <?php esc_html_e('No credit card required', 'blog2social'); ?>
</div>
<div class="pull-right">
<input type="hidden" name="trial_url" id="trial_url" value="<?php echo get_option('home'); ?>" />
<input class="btn btn-success pull-right b2s-trail-btn-start" type="submit" value="<?php esc_html_e('Get Started', 'blog2social'); ?>">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- B2S-Key-Info-->
<div class="modal fade" id="b2sInfoKeyModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoKeyModal" aria-hidden="true" data-backdrop="false">
<div class="modal-dialog b2s-modal-info-key-area">
<div class="modal-content">
<div class="modal-body">
<!--Info-Key-->
<div class="b2s-key-area-success" style="display: none;">
<div class="col-md-12 text-center">
<div class="row">
<div class="col-md-12">
<span class="glyphicon glyphicon-ok b2s-glyphicon-xl glyphicon-success"></span>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12">
<?php esc_html_e('The license has been successfully activated.', 'blog2social'); ?>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="b2s-key-area-fail" style="display: none;">
<div class="col-md-12 text-center">
<div class="row">
<div class="col-md-12">
<span class="glyphicon glyphicon-info-sign b2s-glyphicon-xl glyphicon-danger"></span>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12">
<?php esc_html_e('Your entered License Key is invalid. Please contact support!', 'blog2social'); ?>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="b2s-key-area-fail-max-use" style="display: none;">
<div class="col-md-12 text-center">
<div class="row">
<div class="col-md-12">
<span class="glyphicon glyphicon-info-sign b2s-glyphicon-xl glyphicon-danger"></span>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12">
<?php esc_html_e('Your license key has reached the maximum number of users.', 'blog2social'); ?>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="b2s-key-area-fail-no-token" style="display: none;">
<div class="col-md-12 text-center">
<div class="row">
<div class="col-md-12">
<span class="glyphicon glyphicon-info-sign b2s-glyphicon-xl glyphicon-danger"></span>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12">
<?php esc_html_e('Something went wrong on our side. Please contact support!', 'blog2social'); ?>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
<br>
<div class="text-center">
<button type="button" class="b2s-modal-close btn btn-primary" data-modal-name="#b2sInfoKeyModal" aria-label="Close"><?php esc_html_e("OK", "blog2social"); ?></button>
</div>
</div>
</div>
</div>
</div>
<input id="b2sUserAcceptPrivacyPolicy" type="hidden" value="<?php echo (($showPrivacyPolicy) ? 'true' : 'false'); ?>">
<!-- B2S-Privacy-Policy-Info-->
<div class="modal fade" id="b2sModalPrivacyPolicy" tabindex="-1" role="dialog" aria-labelledby="b2sModalPrivacyPolicy" aria-hidden="true" data-backdrop="false">
<div class="modal-dialog b2s-scroll-modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"> <img src="<?php echo plugins_url('/assets/images/b2s@32.png', B2S_PLUGIN_FILE); ?>" alt="blog2social"> <?php esc_html_e('隐私保护协议', 'blog2social') ?></h4>
</div>
<div class="modal-body b2s-scroll-modal-body b2s-modal-privacy-policy-scroll-content">
<p>
<?php
if ($b2sPrivacyPolicy !== false) {
echo utf8_encode($b2sPrivacyPolicy);
}
?>
</p>
</div>
<div class="modal-footer">
<a href="#" class="b2s-scroll-modal-down" address="true"></a>
<br>
<div class="pull-left btn-padding"><?php esc_html_e('Blog2Social is a service of Adenion GmbH', 'blog2social'); ?></div>
<button class="btn btn-success b2s-modal-privacy-policy-accept-btn"><?php esc_html_e('同意', 'blog2social'); ?></button>
<section class="b2s-scroll-modal-end"></section>
</div>
</div>
</div>
</div>