HEX
Server: LiteSpeed
System: Linux w5304130.sdnsbox.com 4.18.0-425.3.1.lve.el8.x86_64 #1 SMP Tue Nov 22 22:59:23 EST 2022 x86_64
User: makefitmeserver (1001)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/makefitmeserver/public_html/wp-content/plugins/hurrytimer/admin/templates/schedule-tab.php
<?php
namespace Hurrytimer;
global $post_id;
?>
<div id="hurrytimer-tabcontent-general" class="hurrytimer-tabcontent active">
    <table class="form-table">
        <tr class="form-field">
            <td><label for="hurrytimer-mode"><?php _e( "Mode", "hurrytimer" ) ?></label></td>
            <td>
                <label class="hurryt-mr-3 hurryt-text-md">
                    <input type="radio"
                           name="mode"
                           class="hurrytimer-mode"
                           id="hurrytModeRegular"
                           value="<?php echo C::MODE_REGULAR ?>"
                        <?php checked( $campaign->mode, C::MODE_REGULAR ) ?>
                    >
                    <?php _e( "One-time", "hurrytimer" ) ?>
                </label>
                <label class="hurryt-mr-3 hurryt-text-md">
                    <input type="radio"
                           name="mode"
                           class="hurrytimer-mode"
                           id="hurrytModeRecurring"
                           value="<?php echo C::MODE_RECURRING ?>"
                        <?php checked( $campaign->mode, C::MODE_RECURRING ) ?>
                    >
                    <?php _e( "Recurring", "hurrytimer" ) ?>
                </label>
                <label class="hurryt-mr-3 hurryt-text-md">
                    <input
                            type="radio"
                            name="mode"
                            class="hurrytimer-mode"
                            id="hurrytModeEvergreen"
                            value="<?php echo C::MODE_EVERGREEN ?>"
                        <?php checked( $campaign->mode, C::MODE_EVERGREEN ) ?>
                    >
                    <?php _e( "Evergreen", "hurrytimer" ) ?> <span
                            title="Set a dynamic countdown timer for each visitor."
                            class="hurryt-icon" data-icon="help"></span>

                </label>
            </td>
        </tr>


    </table>
    <?php include( HURRYT_DIR . 'admin/templates/schedule-regular.php' ) ?>
    <?php include( HURRYT_DIR . 'admin/templates/schedule-evergreen.php' ) ?>
    <?php include( HURRYT_DIR . 'admin/templates/schedule-recurring.php' ) ?>
</div>