PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.4.11
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.4.11
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / src / Scheduling / views / ConnectionIcon.php
wp-all-export / src / Scheduling / views Last commit date
ConnectionIcon.php 1 year ago ManualScheduling.php 1 year ago SaveSchedulingButton.php 3 years ago SchedulingActiveSitesLimitUI.php 1 year ago SchedulingSubscribeUI.php 1 year ago SchedulingUI.php 1 year ago
ConnectionIcon.php
36 lines
1 <?php
2 if(!defined('ABSPATH')) {
3 die();
4 }
5 $scheduling = \Wpae\Scheduling\Scheduling::create();
6 $licenseCheckResult = $scheduling->checkLicense()['success'] ?? false;
7 ?>
8 <span class="wpai-no-license" <?php if ($licenseCheckResult) { ?> style="display: none;" <?php } ?> >
9
10 <a href="javascript:void(0)" style="z-index: 1000;" class="wpallexport-help help_scheduling"
11 title="Automatic Scheduling is a paid service from Soflyy. Click for more info."
12 onclick="handleHelpSchedulingClick();">
13
14 </a>
15 </span>
16
17 <?php if ($licenseCheckResult) { ?>
18 <span class="wpai-license">
19 <?php if ( $scheduling->checkConnection() ) {
20 ?>
21 <span class="wpallexport-help" title="Connection to WP All Export servers is stable and confirmed"
22 style="background-image: none; width: 20px; height: 20px;">
23 <img src="<?php echo esc_url(PMXE_ROOT_URL); ?>/static/img/s-check.png" style="width: 16px; height:16px;"/>
24 </span>
25 <?php
26 } else { ?>
27 <img src="<?php echo esc_url(PMXE_ROOT_URL); ?>/static/img/s-exclamation.png" style="width: 16px; height:16px;"/>
28 <span class="wpai-license" style="margin-left: 8px; font-weight: normal;"><span class="unable-to-connect">Unable to connect, please contact support.</span></span>
29 <?php
30 }
31 ?>
32 </span>
33 <?php
34 }
35
36 ?>