PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.2.16
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.2.16
2.15.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 All 62 releases
hurrytimer / admin / templates / schedule-tab.php

schedule-tab.php in HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce 2.2.16, at admin/templates/schedule-tab.php

52 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Hurrytimer;
3 global $post_id;
4 ?>
5 <div id="hurrytimer-tabcontent-general" class="hurrytimer-tabcontent active">
6 <table class="form-table">
7 <tr class="form-field">
8 <td><label for="hurrytimer-mode"><?php _e("Mode", "hurrytimer") ?></label></td>
9 <td>
10 <label class="hurryt-mr-3 hurryt-text-md">
11 <input type="radio"
12 name="mode"
13 class="hurrytimer-mode"
14 id="hurrytModeRegular"
15 value="<?php echo C::MODE_REGULAR ?>"
16 <?php checked($campaign->mode, C::MODE_REGULAR) ?>
17 >
18 <?php _e("One-Time", "hurrytimer") ?>
19 </label>
20 <label class="hurryt-mr-3 hurryt-text-md">
21 <input type="radio"
22 name="mode"
23 class="hurrytimer-mode"
24 id="hurrytModeRecurring"
25 value="<?php echo C::MODE_RECURRING ?>"
26 <?php checked($campaign->mode, C::MODE_RECURRING) ?>
27 >
28 <?php _e("Recurring", "hurrytimer") ?>
29 </label>
30 <label class="hurryt-mr-3 hurryt-text-md">
31 <input
32 type="radio"
33 name="mode"
34 class="hurrytimer-mode"
35 id="hurrytModeEvergreen"
36 value="<?php echo C::MODE_EVERGREEN ?>"
37 <?php checked($campaign->mode, C::MODE_EVERGREEN) ?>
38 >
39 <?php _e("Evergreen", "hurrytimer") ?> <span
40 title="Set a dynamic countdown timer for each visitor."
41 class="hurryt-icon" data-icon="help">
42 </span>
43 </label>
44 </td>
45 </tr>
46
47
48 </table>
49 <?php include(HURRYT_DIR . 'admin/templates/schedule-regular.php') ?>
50 <?php include(HURRYT_DIR . 'admin/templates/schedule-evergreen.php') ?>
51 <?php include(HURRYT_DIR . 'admin/templates/schedule-recurring.php') ?>
52 </div>