PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / trunk
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel vtrunk
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 / ManualScheduling.php
wp-all-export / src / Scheduling / views Last commit date
ConnectionIcon.php 4 weeks ago ManualScheduling.php 4 weeks ago SaveSchedulingButton.php 4 weeks ago SchedulingActiveSitesLimitUI.php 4 weeks ago SchedulingSubscribeUI.php 4 weeks ago SchedulingUI.php 4 weeks ago
ManualScheduling.php
47 lines
1 <?php defined( 'ABSPATH' ) || exit; ?>
2 <div>
3
4 <label>
5 <input type="radio" name="scheduling_enable"
6 value="2"/>
7 <h4 style="margin: 0;display: inline-block;"><?php esc_html_e('Manual Scheduling', 'wp-all-export'); ?></h4>
8 </label>
9 <div style="margin-left: 26px; margin-bottom: 10px; font-size: 13px;"><?php esc_html_e( 'Run this export using cron jobs.', 'wp-all-export' ); ?></div>
10 <div style="display: none;" class="manual-scheduling">
11
12 <div class="wpallexport-free-edition-notice" style="margin: 15px 0; width: 90%; padding-left: 10px; padding-right: 10px;">
13 <a style="font-size: 1.3em;" class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=5839967&discount=welcome-upgrade-99&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=manual-scheduling"><?php esc_html_e('Upgrade to the Pro edition of WP All Export for Manual Scheduling','wp-all-export');?></a>
14 <p>
15 <?php esc_html_e('If you already own it, remove the free edition and install the Pro edition.','wp-all-export');?>
16 </p>
17 </div>
18
19 <p style="margin:0;">
20 <h5 style="margin-bottom: 10px; margin-top: 10px; font-size: 14px; color: #ccc;"><?php esc_html_e( 'Trigger URL', 'wp-all-export' ); ?></h5>
21 <code style="padding: 10px; border: 1px solid #ccc; display: block; width: 90%; color: #ccc; user-select: none; cursor: default;">
22 <?php echo esc_url(site_url() . '/wp-load.php?export_key=●●●●●●●●●●●●&export_id=' . intval($export_id) . '&action=trigger'); ?>
23 </code>
24 </p>
25 <p style="margin: 0 0 15px;">
26 <h5 style="margin-bottom: 10px; margin-top: 10px; font-size: 14px; color: #ccc;"><?php esc_html_e( 'Processing URL', 'wp-all-export' ); ?></h5>
27 <code style="padding: 10px; border: 1px solid #ccc; display: block; width: 90%; color: #ccc; user-select: none; cursor: default;">
28 <?php echo esc_url(site_url() . '/wp-load.php?export_key=●●●●●●●●●●●●&export_id=' . intval($export_id) . '&action=processing'); ?>
29 </code>
30 </p>
31 <p style="margin: 0 0 15px;">
32 <h5 style="margin-bottom: 10px; margin-top: 10px; font-size: 14px;"><?php esc_html_e( 'File URL', 'wp-all-export' ); ?></h5>
33 <code style="padding: 10px; border: 1px solid #ccc; display: block; width: 90%;">
34 <?php echo esc_url(site_url() . '/wp-load.php?security_token=' . substr(md5($cron_job_key . $export_id), 0, 16) . '&export_id=' . intval($export_id) . '&action=get_data'); ?>
35 </code>
36 </p>
37 <p style="margin: 0 0 15px;">
38 <h5 style="margin-bottom: 10px; margin-top: 10px; font-size: 14px;"><?php esc_html_e( 'Bundle URL', 'wp-all-export' ); ?></h5>
39 <code style="padding: 10px; border: 1px solid #ccc; display: block; width: 90%;">
40 <?php echo esc_url(site_url() . '/wp-load.php?security_token=' . substr(md5($cron_job_key . $export_id), 0, 16) . '&export_id=' . intval($export_id) . '&action=get_bundle'); ?>
41 </code>
42 </p>
43 <p style="margin:0; padding-left: 0;"><?php esc_html_e( 'Read more about manual scheduling', 'wp-all-export' ); ?>: <a target="_blank" href="http://www.wpallimport.com/documentation/recurring/cron/?utm_source=export-plugin-free&utm_medium=read-more&utm_campaign=manual-scheduling">
44 http://www.wpallimport.com/documentation/recurring/cron/</a>
45 </p>
46 </div>
47 </div>