28 lines
1.8 KiB
PHP
28 lines
1.8 KiB
PHP
<?php
|
|
global $EM_Event, $post;
|
|
$hours_format = em_get_hour_format();
|
|
$required = "<i>*</i>";
|
|
?>
|
|
<div class="event-form-when" id="em-form-when">
|
|
<p class="em-date-range">
|
|
<?php _e ( 'From ', 'dbem' ); ?>
|
|
<input class="em-date-start em-date-input-loc" type="text" />
|
|
<input class="em-date-input" type="hidden" name="event_start_date" value="<?php echo $EM_Event->event_start_date ?>" />
|
|
<?php _e('to','dbem'); ?>
|
|
<input class="em-date-end em-date-input-loc" type="text" />
|
|
<input class="em-date-input" type="hidden" name="event_end_date" value="<?php echo $EM_Event->event_end_date ?>" />
|
|
</p>
|
|
<p class="em-time-range">
|
|
<span class="em-event-text"><?php _e('Event starts at','dbem'); ?></span>
|
|
<input id="start-time" class="em-time-input em-time-start" type="text" size="8" maxlength="8" name="event_start_time" value="<?php echo date( $hours_format, $EM_Event->start ); ?>" />
|
|
<?php _e('to','dbem'); ?>
|
|
<input id="end-time" class="em-time-input em-time-end" type="text" size="8" maxlength="8" name="event_end_time" value="<?php echo date( $hours_format, $EM_Event->end ); ?>" />
|
|
<?php _e('All day','dbem'); ?> <input type="checkbox" class="em-time-all-day" name="event_all_day" id="em-time-all-day" value="1" <?php if(!empty($EM_Event->event_all_day)) echo 'checked="checked"'; ?> />
|
|
</p>
|
|
<span id='event-date-explanation'>
|
|
<?php _e( 'This event spans every day between the beginning and end date, with start/end times applying to each day.', 'dbem' ); ?>
|
|
</span>
|
|
</div>
|
|
<?php if( false && get_option('dbem_recurrence_enabled') && $EM_Event->is_recurrence() ) : //in future, we could enable this and then offer a detach option alongside, which resets the recurrence id and removes the attachment to the recurrence set ?>
|
|
<input type="hidden" name="recurrence_id" value="<?php echo $EM_Event->recurrence_id; ?>" />
|
|
<?php endif;
|