| 1 |
<?php namespace Hurrytimer; ?> |
| 2 |
|
| 3 |
<table class="form-table hidden mode-settings" data-for="hurrytModeRegular"> |
| 4 |
<tr class="form-field" > |
| 5 |
<td><label><?php _e("End Date/Time", "hurrytimer") ?> <span |
| 6 |
title="This uses the WordPress timezone set under Settings → General. Current timezone: <?php echo hurryt_current_timezone_string() ?>" |
| 7 |
class="hurryt-icon" data-icon="help" style="vertical-align: middle;"></span></label></label></td> |
| 8 |
<td> |
| 9 |
<label for="hurrytimer-end-datetime" class="date"> |
| 10 |
<input type="text" name="end_datetime" autocomplete="off" |
| 11 |
id="hurrytimer-end-datetime" |
| 12 |
class="hurrytimer-datepicker" |
| 13 |
value="<?php echo $campaign->endDatetime ?>" |
| 14 |
> |
| 15 |
</label> |
| 16 |
</td> |
| 17 |
</tr> |
| 18 |
|
| 19 |
</table> |
| 20 |
|