# hurrytimer/2.9.2/admin/templates/schedule-regular.php

HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress &amp; WooCommerce, version 2.9.2. 20 lines.

- Page: https://pluginprobe.com/plugins/hurrytimer/2.9.2/code/admin/templates/schedule-regular.php
- Raw: https://pluginprobe.com/plugins/hurrytimer/2.9.2/raw/admin/templates/schedule-regular.php
- Modified: 2023-04-04T01:42:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hurrytimer/2.9.2/code/admin/templates/schedule-regular.php#L10-L20`.

```php
<?php namespace Hurrytimer; ?>

 <table class="form-table  hidden mode-settings" data-for="hurrytModeRegular">
<tr class="form-field" >
            <td><label><?php _e("End date/time", "hurrytimer") ?> <span
                            title="This uses the WordPress timezone set under Settings → General. Current timezone: <?php echo hurryt_current_timezone_string() ?>"
                            class="hurryt-icon" data-icon="help" style="vertical-align: middle;"></span></label></label></td>
            <td>
                <label for="hurrytimer-end-datetime" class="date">
                    <input type="text" name="end_datetime" autocomplete="off"
                           id="hurrytimer-end-datetime"
                           class="hurrytimer-datepicker"
                           value="<?php echo $campaign->endDatetime ?>"
                    >
                </label>
            </td>
        </tr>
        
 </table>

```
