| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326 |
- <?php
- function booked_new_tag($show_new_tags){
- if ($show_new_tags):
- echo '<span class="booked-new-tag">New</span>';
- endif;
- return false;
- }
- function booked_timeslots_select( $appt_id = false, $year, $month, $day = false ){
- if ( !$appt_id )
- return;
- // Caledar ID
- $calendars = get_the_terms( $appt_id, 'booked_custom_calendars' );
- if ( !empty($calendars) ):
- foreach( $calendars as $calendar ):
- $calendar_id = $calendar->term_id;
- endforeach;
- else:
- $calendar_id = false;
- endif;
- // Timeslot Information
- $time_format = get_option('time_format');
- $timeslot = get_post_meta($appt_id, '_appointment_timeslot',true);
- $timeslots = explode('-',$timeslot);
- $time_start = date_i18n($time_format,strtotime($timeslots[0]));
- $time_end = date_i18n($time_format,strtotime($timeslots[1]));
- if ($timeslots[0] == '0000' && $timeslots[1] == '2400'):
- $timeslotText = esc_html__('All day','booked');
- else :
- $timeslotText = $time_start.' '.esc_html__('to','booked').' '.$time_end;
- endif;
- $time_format = get_option('time_format');
- $full_date = $year . '-' . $month . ( $day ? '-' . $day : '' );
- $available_timeslots_array = booked_appointments_available( $year, $month, $day, $calendar_id, true, true );
- $available_timeslots_array = ( isset( $available_timeslots_array[$full_date] ) ? $available_timeslots_array[$full_date] : array() );
- echo '<select class="large textfield booked_appt_timeslot" name="appt_timeslot">';
- if ( !empty($available_timeslots_array) ):
- foreach( $available_timeslots_array as $_timeslot => $_available ):
- if ( $timeslot == $_timeslot ):
- $_available = '';
- elseif ( $_available > 0 ):
- $_available = ' (' . sprintf( _n( '%d Space Available', '%d Spaces Available', $_available, 'booked'), $_available ) . ')';
- else:
- $_available = ' [' . esc_html__('Full','booked') . ']';
- endif;
- $_timeslots = explode('-',$_timeslot);
- $_time_start = date_i18n($time_format,strtotime($_timeslots[0]));
- $_time_end = date_i18n($time_format,strtotime($_timeslots[1]));
- if ($_timeslots[0] == '0000' && $_timeslots[1] == '2400'):
- $_timeslotText = esc_html__('All day','booked');
- else :
- $_timeslotText = sprintf( esc_html__('%s to %s','booked'), $_time_start, $_time_end );
- endif;
- echo '<option value="' . $_timeslot . '"' . ($timeslot == $_timeslot ? ' selected="selected"' : '' ) . '>' . $_timeslotText . $_available . '</option>';
- endforeach;
- else:
- echo '<option value="' . $timeslot . '">' . $timeslotText . ' [' . esc_html__('Full','booked') . ']</option>';
- endif;
- echo '</select>';
- }
- function booked_parse_readme_changelog( $readme_url = false, $title = false ){
- $readme = ( !$readme_url ? file_get_contents( BOOKED_PLUGIN_DIR . '/readme.txt') : file_get_contents( $readme_url ) );
- $readme = make_clickable(esc_html($readme));
- $readme = preg_replace('/`(.*?)`/', '<code>\\1</code>', $readme);
- $readme = preg_replace( '/[\040]\*\*\NEW:\*\*/', '<strong class="new">' . esc_html__( 'New', 'booked' ) . '</strong>', $readme);
- $readme = preg_replace( '/[\040]\*\*\TWEAK:\*\*/', '<strong class="tweak">' . esc_html__( 'Tweak', 'booked' ) . '</strong>', $readme);
- $readme = preg_replace( '/[\040]\*\*\FIX:\*\*/', '<em class="fix">' . esc_html__( 'Fixed', 'booked' ) . '</em>', $readme);
- $readme = preg_replace( '/[\040]\*\*\NEW\*\*/', '<strong class="new">' . esc_html__( 'New', 'booked' ) . '</strong>', $readme);
- $readme = preg_replace( '/[\040]\*\*\TWEAK\*\*/', '<strong class="tweak">' . esc_html__( 'Tweak', 'booked' ) . '</strong>', $readme);
- $readme = preg_replace( '/[\040]\*\*\FIX\*\*/', '<em class="fix">' . esc_html__( 'Fixed', 'booked' ) . '</em>', $readme);
- $readme = preg_replace( '/\*\*(.*?)\*\*/', '<strong>\\1</strong>', $readme);
- $readme = preg_replace( '/\*(.*?)\*/', '<em>\\1</em>', $readme);
- $readme = explode( '== Changelog ==', $readme );
- $readme = explode( '== Upgrade Notice ==', $readme[1] );
- $readme = $readme[0];
- $whats_new_title = '<h3>' . ( $title ? esc_html( $title ) : apply_filters( 'booked_whats_new_title', esc_html__( "What's new?", "booked" ) ) ) . '</h3>';
- $readme = preg_replace('/= (.*?) =/', $whats_new_title, $readme);
- $readme = preg_replace("/\*+(.*)?/i","<ul class='booked-whatsnew-list'><li>$1</li></ul>",$readme);
- $readme = preg_replace("/(\<\/ul\>\n(.*)\<ul class=\'booked-whatsnew-list\'\>*)+/","",$readme);
- $readme = explode( $whats_new_title, $readme );
- $readme = $whats_new_title . $readme[1];
- return $readme;
- }
- function booked_render_single_timeslot_form($timeslot_intervals,$type = false){
- ob_start();
- echo '<form id="single-timeslot-form" action="" method="post">';
- do_action( 'booked_single_timeslot_form_start' );
- echo booked_render_text_field('title', esc_html__('Title (optional)','booked'));
- echo booked_render_time_select('startTime',$timeslot_intervals,esc_html__('Start time ...','booked'),true);
- echo booked_render_time_select('endTime',$timeslot_intervals,esc_html__('End time ...','booked'));
- booked_render_count_select('count','How many?');
- do_action( 'booked_single_timeslot_form_end' );
- echo '</form>';
- $html = ob_get_clean();
- return $html;
- }
- function booked_render_bulk_timeslot_form($timeslot_intervals,$type = false){
- ob_start();
- echo '<form id="bulk-timeslot-form" action="" method="post">';
- do_action( 'booked_bulk_timeslot_form_start' );
- echo booked_render_text_field('title', esc_html__('Title (optional)','booked'));
- echo booked_render_time_select('startTime',$timeslot_intervals,esc_html__('Start time ...','booked'));
- echo booked_render_time_select('endTime',$timeslot_intervals,esc_html__('End time ...','booked'));
- booked_render_time_between_select('time_between',esc_html__('Time between ...','booked'));
- booked_render_interval_select('interval',esc_html__('Appt Length ...','booked'));
- booked_render_count_select('count',esc_html__('# of Each ...','booked'));
- do_action( 'booked_bulk_timeslot_form_end' );
- echo '</form>';
- $html = ob_get_clean();
- return $html;
- }
- function booked_render_time_select($select_name,$interval,$placeholder,$single = false){
- $time = 0;
- $interval = max(1, $interval);
- $time_format = get_option('time_format');
- $html = '<select name="'.$select_name.'">';
- $html .= '<option value="">'.$placeholder.'</option>';
- if ($single): $html .= '<option value="allday">'.esc_html__('All Day','booked').'</option>'; endif;
- do {
- $time_display = booked_convertTime($time);
- $html .= '<option value="'.date_i18n('Hi',strtotime('2014-01-01 '.$time_display)).'">'.date_i18n($time_format,strtotime('2014-01-01 '.$time_display)).'</option>';
- $time = $time + $interval;
- } while ($time < 1440);
- $html .= '<option value="2400">'.date_i18n($time_format,strtotime('2014-01-01 24:00')).' ('.esc_html__('night','booked').')</option>';
- $html .= '</select>';
- return apply_filters( 'booked_time_select_field', $html );
- }
- function booked_render_text_field($field_name,$placeholder){
- $html = '<input type="text" name="'.$field_name.'" placeholder="'.$placeholder.'" />';
- return apply_filters( 'booked_text_field', $html );
- }
- function booked_render_timeslots($calendar_id = false){
- if ($calendar_id):
- $booked_defaults = get_option('booked_defaults_'.$calendar_id);
- else :
- $booked_defaults = get_option('booked_defaults');
- endif;
- $time_format = get_option('time_format');
- $first_day_of_week = (get_option('start_of_week') == 0 ? 7 : 1);
- $day_loop = array(
- date_i18n( 'l', strtotime('Sunday') ),
- date_i18n( 'l', strtotime('Monday') ),
- date_i18n( 'l', strtotime('Tuesday') ),
- date_i18n( 'l', strtotime('Wednesday') ),
- date_i18n( 'l', strtotime('Thursday') ),
- date_i18n( 'l', strtotime('Friday') ),
- date_i18n( 'l', strtotime('Saturday') )
- );
- // Need to use the english three-letter day names to save settings properly
- $day_loop_english_array = array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
- if ($first_day_of_week == 1):
- $sunday_item = array_shift($day_loop); $day_loop[] = $sunday_item;
- $sunday_item_array = array_shift($day_loop_english_array); $day_loop_english_array[] = $sunday_item_array;
- endif;
- ?><table class="booked-timeslots"<?php echo ($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : ''); ?>>
- <tr>
- <?php foreach($day_loop as $key => $day): ?>
- <td>
- <table>
- <thead>
- <tr>
- <?php
- echo '<th data-day="'.$day_loop_english_array[$key].'">';
- echo '<div>' . $day . '</div>';
- echo '<a href="#" class="booked-clear-timeslots button">'.esc_html__('Clear','booked').'</a>';
- echo '<a href="#" class="booked-add-timeslot button">'.esc_html__('Add Timeslots','booked').'</a>';
- echo '</th>';
- ?>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td data-day="<?php echo $day_loop_english_array[$key]; ?>" class="addTimeslot"></td>
- </tr>
- <tr>
- <?php echo '<td class="dayTimeslots" data-day="'.$day_loop_english_array[$key].'">';
- if (!empty($booked_defaults[$day_loop_english_array[$key]])):
- ksort($booked_defaults[$day_loop_english_array[$key]]);
- foreach($booked_defaults[$day_loop_english_array[$key]] as $time => $count):
- echo booked_render_timeslot_info($time_format,$day_loop_english_array[$key],$time,$count,$calendar_id,$booked_defaults);
- endforeach;
- else :
- echo '<p><small>'.esc_html__('No time slots.','booked').'</small></p>';
- endif;
- echo '</td>'; ?>
- </tr>
- </tbody>
- </table>
- </td>
- <?php endforeach; ?>
- </tr>
- </table><?php
- }
- function booked_render_timeslot_info($time_format,$day,$time,$count,$calendar_id,$booked_defaults=array()){
- $title = isset($booked_defaults[$day.'-details'][$time]['title']) ? $booked_defaults[$day.'-details'][$time]['title'] : '';
- ob_start();
- echo '<span class="timeslot" data-timeslot="'.$time.'">';
- $time = explode('-',$time);
- do_action( 'booked_single_timeslot_start', $day, $time, $calendar_id );
- if ($time[0] == '0000' && $time[1] == '2400'):
- $timeslotText = '<span class="start">' . strtoupper( esc_html__( 'All day', 'booked') ) . '</span>';
- else :
- $timeslotText = '<span class="start">' . date_i18n( $time_format, strtotime( '2014-01-01 ' . $time[0] ) ) . '</span> – <span class="end">'.date_i18n($time_format,strtotime('2014-01-01 '.$time[1])).'</span>';
- endif;
- echo $timeslotText;
- echo '<span class="slotsBlock">';
- echo '<span class="changeCount minus" data-count="-1"><i class="booked-icon booked-icon-minus-circle"></i></span>';
- echo '<span class="count"><em>'.$count.'</em> '._n('Space Available','Spaces Available',$count,'booked').'</span>';
- echo '<span class="changeCount add" data-count="1"><i class="booked-icon booked-icon-plus-circle"></i></span>';
- echo '</span>';
- if ( $title ) {
- echo '<span class="booked_slot_title">'.esc_html($title).'</span>';
- }
- echo '<span class="delete"><i class="booked-icon booked-icon-close"></i></span>';
- do_action( 'booked_single_timeslot_end', $day, $time, $calendar_id );
- echo '</span>';
- return ob_get_clean();
- }
- function booked_render_interval_select($select_name,$placeholder){
- ob_start();
- echo '<select name="'.$select_name.'">'; ?>
- <option value="60" selected><?php esc_html_e('Every 1 hour','booked'); ?></option>
- <option value="90"><?php esc_html_e('Every 1 hour, 30 minutes','booked'); ?></option>
- <option value="120"><?php esc_html_e('Every 2 hours','booked'); ?></option>
- <option value="45"><?php esc_html_e('Every 45 minutes','booked'); ?></option>
- <option value="30"><?php esc_html_e('Every 30 minutes','booked'); ?></option>
- <option value="20"><?php esc_html_e('Every 20 minutes','booked'); ?></option>
- <option value="15"><?php esc_html_e('Every 15 minutes','booked'); ?></option>
- <option value="10"><?php esc_html_e('Every 10 minutes','booked'); ?></option>
- <option value="5"><?php esc_html_e('Every 5 minutes','booked'); ?></option>
- <?php echo '</select>';
- echo apply_filters( 'booked_interval_select_field', ob_get_clean(), $select_name );
- }
- function booked_render_time_between_select($select_name,$placeholder){
- ob_start();
- echo '<select name="'.$select_name.'">'; ?>
- <option value="0" selected><?php echo $placeholder; ?></option>
- <option value="5"><?php esc_html_e('5 minutes','booked'); ?></option>
- <option value="10"><?php esc_html_e('10 minutes','booked'); ?></option>
- <option value="15"><?php esc_html_e('15 minutes','booked'); ?></option>
- <option value="20"><?php esc_html_e('20 minutes','booked'); ?></option>
- <option value="30"><?php esc_html_e('30 minutes','booked'); ?></option>
- <option value="45"><?php esc_html_e('45 minutes','booked'); ?></option>
- <option value="60"><?php esc_html_e('1 hour','booked'); ?></option>
- <?php echo '</select>';
- echo apply_filters( 'booked_time_between_select_field', ob_get_clean(), $select_name, $placeholder );
- }
- function booked_render_count_select($select_name,$placeholder){
- $total_spaces = 100;
- $counter = 0;
- echo '<select name="'.$select_name.'">';
- do {
- $counter++;
- echo '<option value="'.$counter.'"'.($counter == 1 ? ' selected="selected"' : '').'>'.sprintf(_n('%d space available','%d spaces available',$counter,'booked'),$counter).'</option>';
- } while ($counter < $total_spaces);
- echo '</select>';
- }
- function booked_admin_set_timezone(){
- $timezone_seconds = (int)get_site_option('gmt_offset') * 3600;
- $timezone_name = timezone_name_from_abbr(null, $timezone_seconds, true);
- date_default_timezone_set($timezone_name);
- }
- function booked_admin_calendar($year = false,$month = false,$calendar_id = false,$size = false){
- $local_time = current_time('timestamp');
- $year = ($year ? $year : date_i18n('Y',$local_time));
- $month = ($month ? $month : date_i18n('m',$local_time));
- $today = date_i18n('j',$local_time); // Defaults to current day
- $last_day = date_i18n('t',strtotime($year.'-'.$month));
- $monthShown = date_i18n($year.'-'.$month.'-01');
- $currentMonth = date_i18n('Y-m-01',$local_time);
- $first_day_of_week = (get_option('start_of_week') == 0 ? 7 : 1); // 1 = Monday, 7 = Sunday, Get from WordPress Settings
- $start_timestamp = strtotime($year.'-'.$month.'-01 00:00:00');
- $end_timestamp = strtotime($year.'-'.$month.'-'.$last_day.' 23:59:59');
- $args = array(
- 'post_type' => 'booked_appointments',
- 'posts_per_page' => -1,
- 'post_status' => 'any',
- 'meta_query' => array(
- array(
- 'key' => '_appointment_timestamp',
- 'value' => array( $start_timestamp, $end_timestamp ),
- 'compare' => 'BETWEEN',
- )
- )
- );
- if ($calendar_id):
- $args['tax_query'] = array(
- array(
- 'taxonomy' => 'booked_custom_calendars',
- 'field' => 'term_id',
- 'terms' => $calendar_id,
- )
- );
- endif;
- $bookedAppointments = new WP_Query($args);
- if($bookedAppointments->have_posts()):
- while ($bookedAppointments->have_posts()):
- $bookedAppointments->the_post();
- global $post;
- $timestamp = get_post_meta($post->ID, '_appointment_timestamp',true);
- $day = date_i18n('j',$timestamp);
- $appointments_array[$day][$post->ID]['timestamp'] = $timestamp;
- $appointments_array[$day][$post->ID]['status'] = $post->post_status;
- endwhile;
- $appointments_array = apply_filters('booked_appointments_day_array', $appointments_array);
- endif;
- // Appointments Array
- // [DAY] => [POST_ID] => [TIMESTAMP/STATUS]
- if ($calendar_id):
- $calendar_name = get_term_by('id',$calendar_id,'booked_custom_calendars');
- $calendar_name = $calendar_name->name;
- else :
- $calendar_name = false;
- endif;
- $hide_weekends = get_option('booked_hide_weekends',false);
- ?><table class="booked-calendar<?php echo ($size ? ' '.$size : ''); ?>"<?php echo ($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : ''); ?> data-monthShown="<?php echo $monthShown; ?>">
- <thead>
- <tr>
- <th colspan="<?php if (!$hide_weekends): ?>7<?php else: ?>5<?php endif; ?>">
- <a href="#" data-goto="<?php echo date_i18n('Y-m-01', strtotime("-1 month", strtotime($year.'-'.$month.'-01'))); ?>" class="page-left"><i class="booked-icon booked-icon-angle-left"></i></a>
- <span class="calendarSavingState">
- <i class="booked-icon booked-icon-spinner-clock booked-icon-spin"></i>
- </span>
- <span class="monthName">
- <?php if ($monthShown != $currentMonth): ?>
- <a href="#" class="backToMonth" data-goto="<?php echo $currentMonth; ?>"><i class="booked-icon booked-icon-arrow-left"></i> <?php esc_html_e('Back to','booked'); ?> <?php echo date_i18n('F',strtotime($currentMonth)); ?></a>
- <?php endif; ?>
- <?php echo date_i18n("F Y", strtotime($year.'-'.$month.'-01')); ?>
- <?php if ($calendar_name): ?>
- <span class="calendarName"><i class="booked-icon booked-icon-calendar"></i> <?php echo $calendar_name; ?></span>
- <?php endif; ?>
- </span>
- <a href="#" data-goto="<?php echo date_i18n('Y-m-01', strtotime("+1 month", strtotime($year.'-'.$month.'-01'))); ?>" class="page-right"><i class="booked-icon booked-icon-angle-right"></i></a>
- </th>
- </tr>
- <tr class="days">
- <?php if ($first_day_of_week == 7 && !$hide_weekends): echo '<th>' . date_i18n( 'D', strtotime('Sunday') ) . '</th>'; endif; ?>
- <th><?php echo date_i18n( 'D', strtotime('Monday') ); ?></th>
- <th><?php echo date_i18n( 'D', strtotime('Tuesday') ); ?></th>
- <th><?php echo date_i18n( 'D', strtotime('Wednesday') ); ?></th>
- <th><?php echo date_i18n( 'D', strtotime('Thursday') ); ?></th>
- <th><?php echo date_i18n( 'D', strtotime('Friday') ); ?></th>
- <?php if (!$hide_weekends): ?><th><?php echo date_i18n( 'D', strtotime('Saturday') ); ?></th><?php endif; ?>
- <?php if ($first_day_of_week == 1 && !$hide_weekends): echo '<th>'. date_i18n( 'D', strtotime('Sunday') ) .'</th>'; endif; ?>
- </tr>
- </thead>
- <tbody><?php
- $today_date = date_i18n('Y',$local_time).'-'.date_i18n('m',$local_time).'-'.date_i18n('j',$local_time);
- $days = date_i18n("t",strtotime($year.'-'.$month.'-01')); // Days in current month
- $lastmonth = date_i18n("t", mktime(0,0,0,$month-1,1,$year)); // Days in previous month
- $start = date_i18n("N", mktime(0,0,0,$month,1,$year)); // Starting day of current month
- if ($first_day_of_week == 7): $start = $start + 1; endif;
- if ($start > 7): $start = 1; endif;
- $finish = $days; // Finishing day of current month
- $laststart = $start - 1; // Days of previous month in calander
- $counter = 1;
- $nextMonthCounter = 1;
- if ($calendar_id):
- $booked_defaults = get_option('booked_defaults_'.$calendar_id);
- if (!$booked_defaults):
- $booked_defaults = get_option('booked_defaults');
- endif;
- else :
- $booked_defaults = get_option('booked_defaults');
- endif;
- $booked_defaults = booked_apply_custom_timeslots_filter($booked_defaults,$calendar_id);
- if($start > 5){ $rows = 6; } else { $rows = 5; }
- for($i = 1; $i <= $rows; $i++){
- echo '<tr class="week">';
- $day_count = 0;
- for($x = 1; $x <= 7; $x++){
- $classes = array();
- $appointments_count = 0;
- if(($counter - $start) < 0){
- $date = (($lastmonth - $laststart) + $counter);
- $classes[] = 'blur';
- $check_month = $month - 1;
- } else if(($counter - $start) >= $days){
- $date = $nextMonthCounter;
- $nextMonthCounter++;
- $classes[] = 'blur';
- $check_month = $month + 1;
- if ($day_count == 0): break; endif;
- } else {
- $check_month = $month;
- $date = ($counter - $start + 1);
- if($today == $counter - $start + 1){
- if ($today_date == $year.'-'.$month.'-'.$date):
- $classes[] = 'today';
- endif;
- }
- $day_name = date('D',strtotime($year.'-'.$month.'-'.$date));
- $full_count = (isset($booked_defaults[$day_name]) && !empty($booked_defaults[$day_name]) ? $booked_defaults[$day_name] : false);
- $total_full_count = 0;
- if ($full_count):
- foreach($full_count as $full_counter){
- $total_full_count = $total_full_count + $full_counter;
- }
- endif;
- if (isset($appointments_array[$date]) && !empty($appointments_array[$date])):
- $appointments_count = count($appointments_array[$date]);
- if ($appointments_count > 0 && $appointments_count < $total_full_count): $classes[] = 'partial';
- elseif ($appointments_count >= $total_full_count): $classes[] = 'booked'; endif;
- endif;
- }
- $check_year = $year;
- if ($check_month == 0):
- $check_month = 12;
- $check_year = $year - 1;
- elseif ($check_month == 13):
- $check_month = 1;
- $check_year = $year + 1;
- endif;
- $day_of_week = date_i18n('N',strtotime($check_year.'-'.$check_month.'-'.$date));
- if ($hide_weekends && $day_of_week == 6 || $hide_weekends && $day_of_week == 7):
- $html = '';
- else:
- $day_count++;
- echo '<td data-date="'.$check_year.'-'.$check_month.'-'.$date.'" class="'.implode(' ',$classes).'">';
- echo '<span class="date'.($appointments_count > 0 ? ' tooltip' : '').'" '.($appointments_count > 0 ? ' title="'.sprintf(_n('%d Appointment','%d Appointments',$appointments_count,'booked'),$appointments_count).'"' : '').'><span class="number">'. $date . '</span></span>';
- echo '</td>';
- endif;
- $counter++;
- $class = '';
- }
- echo '</tr>';
- } ?>
- </tbody>
- </table><?php
- }
- function booked_admin_calendar_date_content($date,$calendar_id = false){
- $calendars = get_terms('booked_custom_calendars','orderby=slug&hide_empty=0');
- $booked_current_user = wp_get_current_user();
- if (!empty($calendars)):
- $tabbed = true;
- if (!current_user_can('manage_booked_options')):
- $calendars = booked_filter_agent_calendars($booked_current_user,$calendars);
- endif;
- else :
- $tabbed = false;
- endif;
- echo '<div class="booked-appt-list">';
- $time_format = get_option('time_format');
- $date_format = get_option('date_format');
- /*
- Grab all of the appointments for this day
- */
- if ($tabbed):
- ?><ul id="bookedAppointmentTabs" class="bookedClearFix">
- <?php // Show the Default calendar to admins, not booking agents
- $is_first_tab = true;
- if ( !get_option('booked_hide_default_calendar') && current_user_can('manage_booked_options') ):
- $calendars = get_terms('booked_custom_calendars','orderby=slug&hide_empty=0');
- $appointments_in_tab = booked_get_admin_appointments($date,$time_format,$date_format,'default',false,$calendars);
- $total_appointments = (!empty($appointments_in_tab) ? count($appointments_in_tab) : 0);
- ?><li<?php if (!$calendar_id): ?> class="active"<?php endif; ?>><a href="#calendar-default"><?php esc_html_e('Default Calendar','booked'); ?><?php echo ($total_appointments ? '<span>'.$total_appointments.'</span>' : ''); ?></a></li><?php
- $is_first_tab = false;
- endif;
- foreach($calendars as $calendar):
- $appointments_in_tab = booked_get_admin_appointments($date,$time_format,$date_format,$calendar->term_id);
- $total_appointments = (!empty($appointments_in_tab) ? count($appointments_in_tab) : 0);
- ?><li<?php if ( $calendar_id == $calendar->term_id || !$calendar_id && $is_first_tab ): ?> class="active"<?php endif; ?>><a href="#calendar-<?php echo $calendar->term_id; ?>"><?php echo $calendar->name; ?><?php echo ($total_appointments ? '<span>'.$total_appointments.'</span>' : ''); ?></a></li><?php
- $is_first_tab = false;
- endforeach;
- ?></ul><?php
- $tab_title = esc_html__('Appointments for','booked');
- $is_first_tab = true;
- if ( !get_option('booked_hide_default_calendar') && current_user_can('manage_booked_options') ):
- ?><div id="bookedCalendarAppointmentsTab-default" class="bookedAppointmentTab<?php if (!$calendar_id): ?> active<?php endif; ?>"><?php
- booked_admin_calendar_date_loop($date,$time_format,$date_format,false,$tab_title,$tabbed,$calendars);
- ?></div><?php
- $is_first_tab = false;
- endif;
- foreach($calendars as $calendar):
- ?><div id="bookedCalendarAppointmentsTab-<?php echo $calendar->term_id; ?>" class="bookedAppointmentTab<?php if ( $calendar_id == $calendar->term_id || !$calendar_id && $is_first_tab): ?> active<?php endif; ?>"><?php
- $display_calendar_id = $calendar->term_id;
- $tab_title = sprintf(esc_html__('%s Appointments for','booked'),'<strong>'.$calendar->name.'</strong>');
- booked_admin_calendar_date_loop($date,$time_format,$date_format,$display_calendar_id,$tab_title,$tabbed,$calendars);
- ?></div><?php
- $is_first_tab = false;
- endforeach;
- else :
- $tab_title = esc_html__('Appointments for','booked');
- booked_admin_calendar_date_loop($date,$time_format,$date_format,$calendar_id,$tab_title,false,$calendars);
- endif;
- echo '</div>';
- }
- function booked_get_admin_appointments($date,$time_format,$date_format,$calendar_id = false,$tabbed = false,$calendars = false){
- $year = date_i18n('Y',strtotime($date));
- $month = date_i18n('m',strtotime($date));
- $day = date_i18n('d',strtotime($date));
- $start_timestamp = strtotime( $year.'-'.$month.'-'.$day.' 00:00:00' );
- $end_timestamp = strtotime( $year.'-'.$month.'-'.$day.' 23:59:59' );
- $args = array(
- 'post_type' => 'booked_appointments',
- 'posts_per_page' => -1,
- 'post_status' => 'any',
- 'meta_query' => array(
- array(
- 'key' => '_appointment_timestamp',
- 'value' => array( $start_timestamp, $end_timestamp ),
- 'compare' => 'BETWEEN'
- )
- )
- );
- if ($calendar_id && $calendar_id != 'default'):
- $args['tax_query'] = array(
- array(
- 'taxonomy' => 'booked_custom_calendars',
- 'field' => 'term_id',
- 'terms' => $calendar_id,
- )
- );
- elseif (!$calendar_id && $tabbed && !empty($calendars) || $calendar_id = 'default'):
- $not_in_calendar = array();
- foreach($calendars as $calendar_term){
- $not_in_calendar[] = $calendar_term->term_id;
- }
- $args['tax_query'] = array(
- array(
- 'taxonomy' => 'booked_custom_calendars',
- 'field' => 'term_id',
- 'terms' => $not_in_calendar,
- 'include_children' => false,
- 'operator' => 'NOT IN'
- )
- );
- endif;
- $appointments_array = array();
- $bookedAppointments = new WP_Query($args);
- if($bookedAppointments->have_posts()):
- while ($bookedAppointments->have_posts()):
- $bookedAppointments->the_post();
- global $post;
- $timestamp = get_post_meta($post->ID, '_appointment_timestamp',true);
- $timeslot = get_post_meta($post->ID, '_appointment_timeslot',true);
- $day = date_i18n('d',$timestamp);
- $guest_name = get_post_meta($post->ID, '_appointment_guest_name',true);
- $guest_surname = get_post_meta($post->ID, '_appointment_guest_surname',true);
- $guest_email = get_post_meta($post->ID, '_appointment_guest_email',true);
- $appointments_array[$post->ID]['post_id'] = $post->ID;
- $appointments_array[$post->ID]['timestamp'] = $timestamp;
- $appointments_array[$post->ID]['timeslot'] = $timeslot;
- $appointments_array[$post->ID]['status'] = $post->post_status;
- if (!$guest_name):
- $user_id = get_post_meta($post->ID, '_appointment_user',true);
- $appointments_array[$post->ID]['user'] = $user_id;
- else:
- $appointments_array[$post->ID]['guest_name'] = $guest_name;
- $appointments_array[$post->ID]['guest_surname'] = $guest_surname;
- $appointments_array[$post->ID]['guest_email'] = $guest_email;
- endif;
- endwhile;
- $appointments_array = apply_filters('booked_appointments_array', $appointments_array);
- endif;
- return $appointments_array;
- }
- function booked_admin_calendar_date_loop($date,$time_format,$date_format,$calendar_id = false,$tab_title,$tabbed = false,$calendars = false){
- $year = date_i18n('Y',strtotime($date));
- $month = date_i18n('m',strtotime($date));
- $day = date_i18n('d',strtotime($date));
- $date_display = date_i18n($date_format,strtotime($date));
- $day_name = date('D',strtotime($date));
- $appointments_array = booked_get_admin_appointments($date,$time_format,$date_format,$calendar_id,$tabbed,$calendars);
- /*
- Start the list
- */
- do_action( 'booked_admin_calendar_date_loop_before_title', $date, $calendar_id );
- echo '<h2>'.$tab_title.' <strong>'.$date_display.'</strong></h2>';
- do_action( 'booked_admin_calendar_date_loop_after_title', $date, $calendar_id );
- /*
- Get today's default timeslots
- */
- if ($calendar_id):
- $booked_defaults = get_option('booked_defaults_'.$calendar_id);
- if (!$booked_defaults):
- $booked_defaults = get_option('booked_defaults');
- endif;
- else :
- $booked_defaults = get_option('booked_defaults');
- endif;
- $formatted_date = date_i18n('Ymd',strtotime($date));
- $booked_defaults = booked_apply_custom_timeslots_details_filter($booked_defaults,$calendar_id);
- if (isset($booked_defaults[$formatted_date]) && !empty($booked_defaults[$formatted_date])):
- $todays_defaults = (is_array($booked_defaults[$formatted_date]) ? $booked_defaults[$formatted_date] : json_decode(html_entity_decode($booked_defaults[$formatted_date]),true));
- $todays_defaults_details = (is_array($booked_defaults[$formatted_date.'-details']) ? $booked_defaults[$formatted_date.'-details'] : json_decode(html_entity_decode($booked_defaults[$formatted_date.'-details']),true));
- elseif (isset($booked_defaults[$formatted_date]) && empty($booked_defaults[$formatted_date])):
- $todays_defaults = false;
- $todays_defaults_details = false;
- elseif (isset($booked_defaults[$day_name]) && !empty($booked_defaults[$day_name])):
- $todays_defaults = $booked_defaults[$day_name];
- $todays_defaults_details = ( isset($booked_defaults[$day_name]) ? $booked_defaults[$day_name.'-details'] : false );
- else :
- $todays_defaults = false;
- $todays_defaults_details = false;
- endif;
- /*
- There are timeslots available, let's loop through them
- */
- if ($todays_defaults){
- ksort($todays_defaults);
- foreach($todays_defaults as $timeslot => $count):
- $appts_in_this_timeslot = array();
- /*
- Are there any appointments in this particular timeslot?
- If so, let's create an array of them.
- */
- foreach($appointments_array as $post_id => $appointment):
- if ($appointment['timeslot'] == $timeslot):
- $appts_in_this_timeslot[] = $post_id;
- endif;
- endforeach;
- /*
- Calculate the number of spots available based on total minus the appointments booked
- */
- $spots_available = $count - count($appts_in_this_timeslot);
- $spots_available = ($spots_available < 0 ? $spots_available = 0 : $spots_available = $spots_available);
- /*
- Display the timeslot
- */
- $timeslot_parts = explode('-',$timeslot);
- $current_timestamp = current_time('timestamp');
- $this_timeslot_timestamp = strtotime($year.'-'.$month.'-'.$day.' '.$timeslot_parts[0]);
- if ($current_timestamp < $this_timeslot_timestamp){
- $available = true;
- } else {
- $available = false;
- }
- if ($timeslot_parts[0] == '0000' && $timeslot_parts[1] == '2400'):
- $timeslotText = esc_html__('All day','booked');
- else :
- $timeslotText = date_i18n($time_format,strtotime($timeslot_parts[0])).' – '.date_i18n($time_format,strtotime($timeslot_parts[1]));
- endif;
- $title = '';
- if ( !empty( $todays_defaults_details[$timeslot] ) ) {
- $title = !empty($todays_defaults_details[$timeslot]['title']) ? $todays_defaults_details[$timeslot]['title'] : '';
- }
- $is_disabled = booked_is_timeslot_disabled( $date,$timeslot,$calendar_id );
- echo '<div class="timeslot bookedClearFix' . ( $title ? ' has-title ' : '' ) . ( $is_disabled ? ' booked-disabled' : '' ) . '">';
- echo '<span class="timeslot-time">';
- if ( $title ) {
- echo '<span class="timeslot-title">' . esc_html($title) . '</span><br>';
- }
- echo '<i class="booked-icon booked-icon-clock"></i> '.$timeslotText.'</span>';
- echo '<span class="timeslot-count">';
- do_action('booked_single_timeslot_in_list_start', $this_timeslot_timestamp, $timeslot, $calendar_id);
- echo '<span class="spots-available'.($spots_available == 0 ? ' empty' : '').'">'.$spots_available.' '._n('space','spaces',$spots_available,'booked').' '.esc_html__('available','booked').'</span>';
- /*
- Display the appointments set in this timeslot
- */
- if (!empty($appts_in_this_timeslot)):
- $booked_appts = count($appts_in_this_timeslot);
- echo '<strong>'. sprintf( esc_html( _n('%d Appointment','%d Appointments',$booked_appts,'booked') ), $booked_appts ) . ':</strong>';
- foreach($appts_in_this_timeslot as $appt_id):
- if (!isset($appointments_array[$appt_id]['guest_name'])):
- $user_info = get_userdata($appointments_array[$appt_id]['user']);
- if (isset($user_info->ID)):
- if ($user_info->user_firstname):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointments_array[$appt_id]['user'].'"><i class="booked-icon booked-icon-pencil"></i> '.$user_info->user_firstname.($user_info->user_lastname ? ' '.$user_info->user_lastname : '').'</a>';
- elseif ($user_info->display_name):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointments_array[$appt_id]['user'].'"><i class="booked-icon booked-icon-pencil"></i> '.$user_info->display_name.'</a>';
- else :
- $user_display = '<a href="#" class="user" data-user-id="'.$appointments_array[$appt_id]['user'].'"><i class="booked-icon booked-icon-pencil"></i> '.$user_info->user_login.'</a>';
- endif;
- else :
- $user_display = esc_html__('(this user no longer exists)','booked');
- endif;
- else :
- $user_display = '<a href="#" class="user" data-user-id="0"><i class="booked-icon booked-icon-pencil"></i> '.$appointments_array[$appt_id]['guest_name'].' '.$appointments_array[$appt_id]['guest_surname'].'</a>';
- endif;
- $status = ($appointments_array[$appt_id]['status'] !== 'publish' && $appointments_array[$appt_id]['status'] !== 'future' ? 'pending' : 'approved');
- echo '<span class="appt-block" data-appt-id="'.$appt_id.'">';
- echo $user_display;
- do_action('booked_admin_calendar_buttons_before', $calendar_id, $appt_id, $status);
- if ( apply_filters('booked_admin_show_calendar_buttons', true) ) {
- echo '<a href="#" class="delete"'.($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : '').'><i class="booked-icon booked-icon-close"></i></a>'.($status == 'pending' ? '<button data-appt-id="'.$appt_id.'" class="approve button button-primary">'.esc_html__('Approve','booked').'</button>' : '');
- }
- do_action('booked_admin_calendar_buttons_after', $calendar_id, $appt_id, $status);
- echo '</span>';
- unset($appointments_array[$appt_id]);
- endforeach;
- endif;
- do_action('booked_single_timeslot_in_list_end',$this_timeslot_timestamp,$timeslot,$calendar_id);
- echo '</span>';
- echo '<span class="timeslot-people">';
- echo '<button data-timeslot="'.$timeslot.'" data-title="'.esc_attr($title).'" data-date="'.$date.'"'.($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : '').' class="new-appt button button-primary"'.(!$spots_available ? ' disabled' : '').'>'.esc_html__('New Appointment','booked').'</button>';
- echo ( empty($appts_in_this_timeslot) ? '<button data-timeslot="'.$timeslot.'" data-title="'.esc_attr($title).'" data-date="'.$date.'"'.($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : '').' class="disable-slot button"'.(!$spots_available ? ' disabled' : '').'>' . ( $is_disabled ? esc_html__('Enable','booked') : esc_html__('Disable','booked') ) . '</button>' : '' );
- echo '</span>';
- echo '</div>';
- endforeach;
- /*
- Are there any additional appointments for this day that are not in the default timeslots?
- */
- if (!empty($appointments_array)):
- echo '<span class="additional-timeslots">';
- echo '<br><p>'.esc_html__('There are additional appointments booked from previously available time slots:','booked').'</p>';
- foreach($appointments_array as $appointment):
- if (!isset($appointment['guest_name'])):
- $user_info = get_userdata($appointment['user']);
- if (isset($user_info->ID)):
- if ($user_info->user_firstname):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->user_firstname.($user_info->user_lastname ? ' '.$user_info->user_lastname : '').'</a>';
- elseif ($user_info->display_name):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->display_name.'</a>';
- else :
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->user_login.'</a>';
- endif;
- else :
- $user_display = esc_html__('(this user no longer exists)','booked');
- endif;
- else :
- $user_display = '<a href="#" class="user" data-user-id="0">'.$appointment['guest_name'].' '.$appointment['guest_surname'].'</a>';
- endif;
- $status = ($appointment['status'] !== 'publish' && $appointment['status'] !== 'future' ? 'pending' : 'approved');
- $timeslot = explode('-',$appointment['timeslot']);
- echo '<div class="timeslot bookedClearFix" data-appt-id="'.$appointment['post_id'].'">';
- echo '<span class="timeslot-time">'.date_i18n($time_format,strtotime($timeslot[0])).' – '.date_i18n($time_format,strtotime($timeslot[1])).'</span>';
- echo '<span class="timeslot-count count-wide">';
- echo '<span class="appt-block appt-no-padding" data-appt-id="'.$appointment['post_id'].'">';
- echo $user_display;
- do_action('booked_admin_calendar_buttons_before', $calendar_id, $appt_id, $status);
- if ( apply_filters('booked_admin_show_calendar_buttons', true) ) {
- echo '<a href="#" class="delete"'.($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : '').'><i class="booked-icon booked-icon-close"></i></a>'.($status == 'pending' ? '<button data-appt-id="'.$appt_id.'" class="approve button button-primary">'.esc_html__('Approve','booked').'</button>' : '');
- }
- do_action('booked_admin_calendar_buttons_after', $calendar_id, $appt_id, $status);
- echo '</span>';
- echo '</span>';
- echo '</div>';
- endforeach;
- echo '</span>';
- endif;
- /*
- There are no default timeslots, however there are appointments booked.
- */
- } else if (!$todays_defaults && !empty($appointments_array)) {
- echo '<span class="additional-timeslots">';
- echo '<p>'.esc_html__('There are no appointment slots available for this day, however there are appointments booked from previously available time slots:','booked').'</p>';
- foreach($appointments_array as $appointment):
- if (!isset($appointment['guest_name'])):
- $user_info = get_userdata($appointment['user']);
- if (isset($user_info->ID)):
- if ($user_info->user_firstname):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->user_firstname.($user_info->user_lastname ? ' '.$user_info->user_lastname : '').'</a>';
- elseif ($user_info->display_name):
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->display_name.'</a>';
- else :
- $user_display = '<a href="#" class="user" data-user-id="'.$appointment['user'].'">'.$user_info->user_login.'</a>';
- endif;
- else :
- $user_display = esc_html__('(this user no longer exists)','booked');
- endif;
- else :
- $user_display = '<a href="#" class="user" data-user-id="0">'.$appointment['guest_name'].' '.$appointment['guest_surname'].'</a>';
- endif;
- $status = ($appointment['status'] !== 'publish' && $appointment['status'] !== 'future' ? 'pending' : 'approved');
- $timeslot = explode('-',$appointment['timeslot']);
- echo '<div class="timeslot bookedClearFix" data-appt-id="'.$appointment['post_id'].'">';
- echo '<span class="timeslot-time">'.date_i18n($time_format,strtotime($timeslot[0])).' – '.date_i18n($time_format,strtotime($timeslot[1])).'</span>';
- echo '<span class="timeslot-count count-wide">';
- echo '<span class="appt-block appt-no-padding" data-appt-id="'.$appointment['post_id'].'">';
- echo $user_display;
- do_action('booked_admin_calendar_buttons_before', $calendar_id, $appt_id, $status);
- if ( apply_filters('booked_admin_show_calendar_buttons', true) ) {
- echo '<a href="#" class="delete"'.($calendar_id ? ' data-calendar-id="'.$calendar_id.'"' : '').'><i class="booked-icon booked-icon-close"></i></a>'.($status == 'pending' ? '<button data-appt-id="'.$appt_id.'" class="approve button button-primary">'.esc_html__('Approve','booked').'</button>' : '');
- }
- do_action('booked_admin_calendar_buttons_after', $calendar_id, $appt_id, $status);
- echo '</span>';
- echo '</span>';
- echo '</div>';
- endforeach;
- echo '</span>';
- /*
- There are no default timeslots and no appointments booked for this particular day.
- */
- } else {
- echo '<p>'.esc_html__('There are no appointment time slots available for this day.','booked').' <a href="'.get_admin_url(null,'admin.php?page=booked-settings#defaults').'">'.esc_html__('Would you like to add some?','booked').'</a></p>';
- }
- do_action( 'booked_admin_calendar_date_loop_after_loop', $date, $calendar_id );
- }
- function booked_admin_calendar_date_square($date,$calendar_id = false){
- $local_time = current_time('timestamp');
- $year = date_i18n('Y',strtotime($date));
- $month = date_i18n('m',strtotime($date));
- $this_day = date_i18n('j',strtotime($date)); // Defaults to current day
- $last_day = date_i18n('t',strtotime($year.'-'.$month));
- $monthShown = date_i18n('Y-m-d',strtotime($year.'-'.$month.'-01'));
- $currentMonth = date_i18n('Y-m-01',$local_time);
- $first_day_of_week = (get_option('start_of_week') == 0 ? 7 : 1); // 1 = Monday, 7 = Sunday, Get from WordPress Settings
- $start_timestamp = strtotime($year.'-'.$month.'-01 00:00:00');
- $end_timestamp = strtotime($year.'-'.$month.'-'.$last_day.' 23:59:59');
- if ($calendar_id):
- $booked_defaults = get_option('booked_defaults_'.$calendar_id);
- if (!$booked_defaults):
- $booked_defaults = get_option('booked_defaults');
- endif;
- else :
- $booked_defaults = get_option('booked_defaults');
- endif;
- $args = array(
- 'post_type' => 'booked_appointments',
- 'posts_per_page' => -1,
- 'meta_query' => array(
- array(
- 'key' => '_appointment_timestamp',
- 'value' => array( $start_timestamp, $end_timestamp ),
- 'compare' => 'BETWEEN',
- )
- )
- );
- if ($calendar_id):
- $args['tax_query'] = array(
- array(
- 'taxonomy' => 'booked_custom_calendars',
- 'field' => 'term_id',
- 'terms' => $calendar_id,
- )
- );
- endif;
- $bookedAppointments = new WP_Query($args);
- if($bookedAppointments->have_posts()):
- while ($bookedAppointments->have_posts()):
- $bookedAppointments->the_post();
- global $post;
- $timestamp = get_post_meta($post->ID, '_appointment_timestamp',true);
- $day = date_i18n('j',$timestamp);
- $appointments_array[$day][$post->ID]['timestamp'] = $timestamp;
- $appointments_array[$day][$post->ID]['status'] = $post->post_status;
- endwhile;
- $appointments_array = apply_filters('booked_appointments_day_array', $appointments_array);
- endif;
- if ( !isset($_POST['inactive']) ):
- $classes[] = 'active';
- endif;
- $today_date = date_i18n('Y').'-'.date_i18n('m').'-'.date_i18n('j');
- if ($today_date == $_POST['date']):
- $classes[] = 'today';
- endif;
- $day_name = date('D',strtotime($date));
- $full_count = (isset($booked_defaults[$day_name]) && !empty($booked_defaults[$day_name]) ? $booked_defaults[$day_name] : false);
- $total_full_count = 0;
- if ($full_count):
- foreach($full_count as $full_counter){
- $total_full_count = $total_full_count + $full_counter;
- }
- endif;
- if (isset($appointments_array[$this_day]) && !empty($appointments_array[$this_day])):
- $appointments_count = count($appointments_array[$this_day]);
- if ($appointments_count > 0 && $appointments_count < $total_full_count): $classes[] = 'partial';
- elseif ($appointments_count >= $total_full_count): $classes[] = 'booked'; endif;
- endif;
- echo '<td data-date="'.$date.'" class="'.implode(' ',$classes).'">';
- echo '<span class="date'.(isset($appointments_count) && $appointments_count > 0 ? ' tooltip' : '').'"'.(isset($appointments_count) && $appointments_count > 0 ? ' title="'.sprintf(_n('%d Appointment','%d Appointments',$appointments_count,'booked'),$appointments_count).'"' : '').'><span class="number">'. $this_day . '</span></span>';
- echo '</td>';
- }
- function booked_render_custom_fields($calendar = false){
- ?><form id="booked-cf-sortables-form">
- <ul id="booked-cf-sortables"><?php
- if (!$calendar):
- $custom_fields = json_decode(stripslashes(get_option('booked_custom_fields')),true);
- else:
- $custom_fields = json_decode(stripslashes(get_option('booked_custom_fields_'.$calendar)),true);
- endif;
- if (!empty($custom_fields)):
- $look_for_subs = false;
- foreach($custom_fields as $field):
- if ($look_for_subs):
- $field_type = explode('---',$field['name']);
- $field_type = $field_type[0];
- if ($field_type == 'single-checkbox'):
- ?><li class="ui-state-default"><i class="sub-handle booked-icon booked-icon-bars"></i>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this checkbox...','booked'); ?>" />
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($field_type == 'single-radio-button'):
- ?><li class="ui-state-default"><i class="sub-handle booked-icon booked-icon-bars"></i>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this radio button...','booked'); ?>" />
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($field_type == 'single-drop-down'):
- ?><li class="ui-state-default"><i class="sub-handle booked-icon booked-icon-bars"></i>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this option...','booked'); ?>" />
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($field_type == 'required'):
- // do nothing
- else :
- if ($look_for_subs == 'checkboxes'):
- ?></ul>
- <button class="cfButton button" data-type="single-checkbox"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Checkbox','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($look_for_subs == 'radio-buttons'):
- ?></ul>
- <button class="cfButton button" data-type="single-radio-button"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Radio Button','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($look_for_subs == 'dropdowns'):
- ?></ul>
- <button class="cfButton button" data-type="single-drop-down"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Option','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- endif;
- $reset_subs = apply_filters(
- 'booked_custom_fields_add_template_subs',
- $field_type,
- $field['name'],
- $field['value'],
- $look_for_subs
- );
- if ( $reset_subs ) {
- $look_for_subs = false;
- }
- endif;
- endif;
- $field_parts = explode('---',$field['name']);
- $field_type = $field_parts[0];
- $end_of_string = explode('___',$field_parts[1]);
- $numbers_only = $end_of_string[0];
- $is_required = (isset($end_of_string[1]) ? true : false);
- switch($field_type):
- case 'single-line-text-label' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Single Line Text','booked'); ?></small>
- <p><input class="cf-required-checkbox"<?php if ($is_required): echo ' checked="checked"'; endif; ?> type="checkbox" name="required---<?php echo $numbers_only; ?>" id="required---<?php echo $numbers_only; ?>"> <label for="required---<?php echo $numbers_only; ?>"><?php esc_html_e('Required Field','booked'); ?></label></p>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this field...','booked'); ?>" />
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- break;
- case 'paragraph-text-label' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Paragraph Text','booked'); ?></small>
- <p><input class="cf-required-checkbox"<?php if ($is_required): echo ' checked="checked"'; endif; ?> type="checkbox" name="required---<?php echo $numbers_only; ?>" id="required---<?php echo $numbers_only; ?>"> <label for="required---<?php echo $numbers_only; ?>"><?php esc_html_e('Required Field','booked'); ?></label></p>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this field...','booked'); ?>" />
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- break;
- case 'checkboxes-label' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Checkboxes','booked'); ?></small>
- <p><input class="cf-required-checkbox"<?php if ($is_required): echo ' checked="checked"'; endif; ?> type="checkbox" name="required---<?php echo $numbers_only; ?>" id="required---<?php echo $numbers_only; ?>"> <label for="required---<?php echo $numbers_only; ?>"><?php esc_html_e('Required Field','booked'); ?></label></p>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this checkbox group...','booked'); ?>" />
- <ul id="booked-cf-checkboxes"><?php
- $look_for_subs = 'checkboxes';
- break;
- case 'radio-buttons-label' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Radio Buttons','booked'); ?></small>
- <p><input class="cf-required-checkbox"<?php if ($is_required): echo ' checked="checked"'; endif; ?> type="checkbox" name="required---<?php echo $numbers_only; ?>" id="required---<?php echo $numbers_only; ?>"> <label for="required---<?php echo $numbers_only; ?>"><?php esc_html_e('Required Field','booked'); ?></label></p>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this radio button group...','booked'); ?>" />
- <ul id="booked-cf-radio-buttons"><?php
- $look_for_subs = 'radio-buttons';
- break;
- case 'drop-down-label' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Drop Down','booked'); ?></small>
- <p><input class="cf-required-checkbox"<?php if ($is_required): echo ' checked="checked"'; endif; ?> type="checkbox" name="required---<?php echo $numbers_only; ?>" id="required---<?php echo $numbers_only; ?>"> <label for="required---<?php echo $numbers_only; ?>"><?php esc_html_e('Required Field','booked'); ?></label></p>
- <input type="text" name="<?php echo $field['name']; ?>" value="<?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?>" placeholder="<?php esc_html_e('Enter a label for this drop-down group...','booked'); ?>" />
- <ul id="booked-cf-drop-down"><?php
- $look_for_subs = 'dropdowns';
- break;
- case 'plain-text-content' :
- ?><li class="ui-state-default"><i class="main-handle booked-icon booked-icon-bars"></i>
- <small><?php esc_html_e('Text Content','booked'); ?></small>
- <textarea name="<?php echo $field['name']; ?>"><?php echo htmlentities($field['value'], ENT_QUOTES | ENT_IGNORE, "UTF-8"); ?></textarea>
- <small class="help-text"><?php esc_html_e('HTML is allowed in this field.','booked'); ?></small>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- break;
- default:
- $look_for_subs_action = apply_filters(
- 'booked_custom_fields_add_template_main',
- false, // default value to return when there is no addon plugin to hook on it
- $field_type,
- $field['name'],
- $field['value'],
- $is_required,
- $look_for_subs,
- $numbers_only
- );
- $look_for_subs = $look_for_subs_action ? $look_for_subs_action : $look_for_subs;
- break;
- endswitch;
- endforeach;
- if ($look_for_subs):
- do_action('booked_custom_fields_add_template_subs_end', $field_type, $look_for_subs);
- if ($look_for_subs == 'checkboxes'):
- ?></ul>
- <button class="cfButton button" data-type="single-checkbox"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Checkbox','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($look_for_subs == 'radio-buttons'):
- ?></ul>
- <button class="cfButton button" data-type="single-radio-button"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Radio Button','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- elseif ($look_for_subs == 'dropdowns'):
- ?></ul>
- <button class="cfButton button" data-type="single-drop-down"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Option','booked'); ?></button>
- <span class="cf-delete"><i class="booked-icon booked-icon-close"></i></span>
- </li><?php
- endif;
- endif;
- endif;
- ?></ul>
- </form>
- <button class="cfButton button" data-type="single-line-text-label"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Single Line Text','booked'); ?></button>
- <button class="cfButton button" data-type="paragraph-text-label"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Paragraph Text','booked'); ?></button>
- <button class="cfButton button" data-type="checkboxes-label"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Checkboxes','booked'); ?></button>
- <button class="cfButton button" data-type="radio-buttons-label"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Radio Buttons','booked'); ?></button>
- <button class="cfButton button" data-type="drop-down-label"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Drop Down','booked'); ?></button>
- <button class="cfButton button" data-type="plain-text-content"><i class="booked-icon booked-icon-plus"></i> <?php esc_html_e('Text Content','booked'); ?></button>
- <?php do_action('booked_custom_fields_add_buttons');
- }
|