PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
woocommerce-bookings
/
includes
/
admin
/
views
<?php /** * Display global availability fields. * * @package Woocommerce/Bookings * @var $availability WC_Global_Availability */ $intervals = array(); $intervals['months'] = array( '1' => __( 'January', 'woocommerce-bookings' ), '2' => __( 'February', 'woocommerce-bookings' ), '3' => __( 'March', 'woocommerce-bookings' ), '4' => __( 'April', 'woocommerce-bookings' ), '5' => __( 'May', 'woocommerce-bookings' ), '6' => __( 'June', 'woocommerce-bookings' ), '7' => __( 'July', 'woocommerce-bookings' ), '8' => __( 'August', 'woocommerce-bookings' ), '9' => __( 'September', 'woocommerce-bookings' ), '10' => __( 'October', 'woocommerce-bookings' ), '11' => __( 'November', 'woocommerce-bookings' ), '12' => __( 'December', 'woocommerce-bookings' ), ); $intervals['days'] = array( '1' => __( 'Monday', 'woocommerce-bookings' ), '2' => __( 'Tuesday', 'woocommerce-bookings' ), '3' => __( 'Wednesday', 'woocommerce-bookings' ), '4' => __( 'Thursday', 'woocommerce-bookings' ), '5' => __( 'Friday', 'woocommerce-bookings' ), '6' => __( 'Saturday', 'woocommerce-bookings' ), '7' => __( 'Sunday', 'woocommerce-bookings' ), ); /* translators: 1: week number */ $week_string = __( 'Week %s', 'woocommerce-bookings' ); for ( $i = 1; $i <= 53; $i ++ ) { $intervals['weeks'][ $i ] = sprintf( $week_string, $i ); } if ( ! isset( $availability['type'] ) ) { $availability['type'] = 'custom'; } if ( ! isset( $availability['priority'] ) ) { $availability['priority'] = 10; } $availability_title = ! empty( $availability['title'] ) ? $availability['title'] : ''; $gcal_event_id = ! empty( $availability['gcal_event_id'] ) ? $availability['gcal_event_id'] : ''; $availability_id = ! empty( $availability['ID'] ) ? $availability['ID'] : ''; $is_google = ! empty( $availability['gcal_event_id'] ); $is_rrule = 'rrule' === $availability['type']; ?> <tr data-id="<?php echo esc_attr( $availability_id ); ?>" <?php echo $is_google ? 'class="google-event"' : ''; ?> > <td class="sort"> </td> <td><input type="hidden" name="wc_booking_availability_id[]" value="<?php echo esc_attr( $availability_id ); ?>"/> <div class="select wc_booking_availability_type"> <?php if ( $is_google ) { ?> <div class="bookings-to-label-row"> <p> <strong> <?php if ( $is_rrule ) { esc_html_e( 'Google Recurring Event', 'woocommerce-bookings' ); } else { esc_html_e( 'Google Event', 'woocommerce-bookings' ); } ?> </strong> </p> </div> <?php } ?> <select name="wc_booking_availability_type[]" <?php echo $is_google ? 'style="display: none;"' : ''; ?>> <?php if ( $is_rrule ) : ?> <option value="rrule" selected></option> <?php elseif ( $is_google ) : ?> <option value="<?php echo esc_attr( $availability['type'] ); ?>" selected></option> <?php else : ?> <option value="custom" <?php selected( $availability['type'], 'custom' ); ?>><?php esc_html_e( 'Date range', 'woocommerce-bookings' ); ?></option> <option value="custom:daterange" <?php selected( $availability['type'], 'custom:daterange' ); ?>><?php esc_html_e( 'Date range with time', 'woocommerce-bookings' ); ?></option> <option value="months" <?php selected( $availability['type'], 'months' ); ?>><?php esc_html_e( 'Range of months', 'woocommerce-bookings' ); ?></option> <option value="weeks" <?php selected( $availability['type'], 'weeks' ); ?>><?php esc_html_e( 'Range of weeks', 'woocommerce-bookings' ); ?></option> <option value="days" <?php selected( $availability['type'], 'days' ); ?>><?php esc_html_e( 'Range of days', 'woocommerce-bookings' ); ?></option> <optgroup label="<?php esc_html_e( 'Time Ranges', 'woocommerce-bookings' ); ?>"> <option value="time" <?php selected( $availability['type'], 'time' ); ?>><?php esc_html_e( 'Time Range (all week)', 'woocommerce-bookings' ); ?></option> <option value="time:range" <?php selected( $availability['type'], 'time:range' ); ?>><?php esc_html_e( 'Date Range with recurring time', 'woocommerce-bookings' ); ?></option> <?php foreach ( $intervals['days'] as $key => $label ) : ?> <option value="time:<?php echo esc_attr( $key ); ?>" <?php selected( $availability['type'], 'time:' . $key ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </optgroup> </select> <?php endif; ?> </div> </td> <td <?php echo $is_rrule ? 'colspan="3"' : 'style="border-right:0;"'; ?>> <div class="bookings-datetime-select-from"> <div class="rrule"> <?php if ( $is_rrule ) { $is_all_day = false === strpos( $availability['from'], ':' ); $date_format = $is_all_day ? 'Y-m-d' : 'Y-m-d g:i A'; $from_date = new WC_DateTime( $availability['from'] ); $to_date = new WC_DateTime( $availability['to'] ); $timezone = new DateTimeZone( wc_booking_get_timezone_string() ); $from_date->setTimezone( $timezone ); $to_date->setTimezone( $timezone ); $human_readable_options = array( 'date_formatter' => function( $date ) use ( $date_format ) { return $date->format( $date_format ); }, ); if ( $is_all_day ) { $to_date->sub( new DateInterval( 'P1D' ) ); } $rset = new \RRule\RSet( $availability['rrule'], $is_all_day ? $from_date->format( $date_format ) : $from_date ); ?> <strong> <?php echo esc_html( $from_date->format( $date_format ) ); ?> <?php esc_html_e( 'to', 'woocommerce-bookings' ); ?> <?php echo esc_html( $to_date->format( $date_format ) ); ?> </strong> <br /> <?php esc_html_e( 'Repeating ', 'woocommerce-bookings' ); foreach ( $rset->getRRules() as $rrule ) { echo esc_html( $rrule->humanReadable( $human_readable_options ) ); } if ( $rset->getExDates() ) { esc_html_e( ', except ', 'woocommerce-bookings' ); echo esc_html( join( ' and ', array_map( function ( $date ) use ( $date_format ) { return $date->format( $date_format ); }, $rset->getExDates() ) ) ); } } ?> </div> <div class="select from_day_of_week"> <select name="wc_booking_availability_from_day_of_week[]"> <?php foreach ( $intervals['days'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['from'] ) && $availability['from'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="select from_month"> <select name="wc_booking_availability_from_month[]"> <?php foreach ( $intervals['months'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['from'] ) && $availability['from'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="select from_week"> <select name="wc_booking_availability_from_week[]"> <?php foreach ( $intervals['weeks'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['from'] ) && $availability['from'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="from_date"> <?php $from_date = ''; $from_time = ''; if ( 'custom' === $availability['type'] && ! empty( $availability['from'] ) ) { $from_date = $availability['from']; } elseif ( in_array( $availability['type'], array( 'time:range', 'custom:daterange' ), true ) && ! empty( $availability['from_date'] ) ) { $from_date = $availability['from_date']; } if ( strrpos( $availability['type'], 'time' ) === 0 || 'custom:daterange' === $availability['type'] ) { $from_time = $availability['from']; } if ( $is_google ) { ?> <div class="bookings-to-label-row"> <p> <strong> <?php echo esc_html( $from_date ); ?> </strong> </p> </div> <?php } ?> <input type="text" <?php echo $is_google ? 'style="display: none;"' : 'class="date-picker"'; ?> name="wc_booking_availability_from_date[]" value="<?php echo esc_attr( $from_date ); ?>" /> </div> <div class="from_time"> <?php if ( $is_google && $from_time ) { ?> <div class="bookings-to-label-row"> <p> <strong> <?php echo esc_html( date_i18n( wc_time_format(), strtotime( $from_time ) ) ); ?> </strong> </p> </div> <?php } ?> <input type="time" <?php echo $is_google ? 'style="display: none;"' : 'class="time-picker"'; ?> name="wc_booking_availability_from_time[]" value="<?php echo esc_attr( $from_time ); ?>" placeholder="HH:MM" /> </div> </div> </td> <td style="<?php echo $is_rrule ? 'display:none;' : 'border-right:0;'; ?>" class="bookings-to-label-row"> <p><?php esc_html_e( 'to', 'woocommerce-bookings' ); ?></p> <p class="bookings-datetimerange-second-label"><?php esc_html_e( 'to', 'woocommerce-bookings' ); ?></p> </td> <td style="<?php echo $is_rrule ? 'display:none;' : ''; ?>"> <div class='bookings-datetime-select-to'> <div class="select to_day_of_week"> <select name="wc_booking_availability_to_day_of_week[]"> <?php foreach ( $intervals['days'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['to'] ) && $availability['to'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="select to_month"> <select name="wc_booking_availability_to_month[]"> <?php foreach ( $intervals['months'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['to'] ) && $availability['to'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="select to_week"> <select name="wc_booking_availability_to_week[]"> <?php foreach ( $intervals['weeks'] as $key => $label ) : ?> <option value="<?php echo esc_attr( $key ); ?>" <?php selected( isset( $availability['to'] ) && $availability['to'] === (string) $key, true ); ?>><?php echo esc_html( $label ); ?></option> <?php endforeach; ?> </select> </div> <div class="to_date"> <?php $to_date = ''; $to_time = ''; if ( 'custom' === $availability['type'] && ! empty( $availability['to'] ) ) { $to_date = $availability['to']; } elseif ( in_array( $availability['type'], array( 'time:range', 'custom:daterange' ), true ) && ! empty( $availability['to_date'] ) ) { $to_date = $availability['to_date']; } if ( strrpos( $availability['type'], 'time' ) === 0 || 'custom:daterange' === $availability['type'] ) { $to_time = $availability['to']; } if ( $is_google ) { ?> <div class="bookings-to-label-row"> <p> <strong> <?php echo esc_html( $to_date ); ?> </strong> </p> </div> <?php } ?> <input type="text" <?php echo $is_google ? 'style="display: none;"' : 'class="date-picker"'; ?> name="wc_booking_availability_to_date[]" value="<?php echo esc_attr( $to_date ); ?>" /> </div> <div class="to_time"> <?php if ( $is_google && $to_time ) { ?> <div class="bookings-to-label-row"> <p> <strong> <?php echo esc_html( date_i18n( wc_time_format(), strtotime( $to_time ) ) ); ?> </strong> </p> </div> <?php } ?> <input type="time" <?php echo $is_google ? 'style="display: none;"' : 'class="time-picker"'; ?> name="wc_booking_availability_to_time[]" value="<?php echo esc_attr( $to_time ); ?>" placeholder="HH:MM" /> </div> </div> </td> <td> <div class="select"> <?php if ( $is_google ) : ?> <div class="bookings-to-label-row"> <p> <?php esc_html_e( 'No', 'woocommerce-bookings' ); ?> </p> </div> <?php endif; ?> <select <?php echo $is_google ? 'style="display: none;"' : ''; ?> name="wc_booking_availability_bookable[]"> <option value="no" <?php selected( isset( $availability['bookable'] ) && 'no' === $availability['bookable'], true ); ?>><?php esc_html_e( 'No', 'woocommerce-bookings' ); ?></option> <?php if ( ! $is_google ) : ?> <option value="yes" <?php selected( isset( $availability['bookable'] ) && 'yes' === $availability['bookable'], true ); ?>><?php esc_html_e( 'Yes', 'woocommerce-bookings' ); ?></option> <?php endif; ?> </select> </div> </td> <?php if ( ! empty( $show_title ) ) : ?> <td> <div class="title"> <?php if ( $is_google ) : ?> <div class="bookings-to-label-row"> <p> <?php echo esc_html( $availability_title ); ?> </p> </div> <?php endif; ?> <input <?php echo $is_google ? 'style="display: none;"' : ''; ?> name="wc_booking_availability_title[]" value="<?php echo esc_attr( $availability_title ); ?>" style="border:1px solid #ddd;background-color:#fff;" /> </div> </td> <?php endif; ?> <td> <div class="priority"> <?php if ( $is_google ) : ?> <div class="bookings-to-label-row"> <p> <?php echo esc_html( $availability['priority'] ); ?> </p> </div> <?php endif; ?> <input <?php echo $is_google ? 'style="display: none;"' : ''; ?> type="number" name="wc_booking_availability_priority[]" value="<?php echo esc_attr( $availability['priority'] ); ?>" placeholder="10" /> <input type="hidden" name="wc_booking_availability_gcal_event_id[]" value="<?php echo esc_attr( $gcal_event_id ); ?>" /> </div> </td> <?php if ( ! empty( $show_title ) ) : ?> <?php do_action( 'woocommerce_bookings_extra_global_availability_fields', $availability ); ?> <?php endif; ?> <td class="remove"> </td> </tr>
[+]
..
[-] html-notifications-page.php
[edit]
[-] html-booking-pricing-fields.php
[edit]
[-] html-booking-availability-fields.php
[edit]
[-] html-calendar-month.php
[edit]
[-] html-booking-persons.php
[edit]
[-] html-settings-page.php
[edit]
[-] html-availability-nav.php
[edit]
[-] html-classic-availability-settings.php
[edit]
[-] html-booking-tab.php
[edit]
[-] html-availability-views-nav.php
[edit]
[-] html-booking-resources.php
[edit]
[-] html-calendar-nav.php
[edit]
[-] html-store-availability-settings.php
[edit]
[-] html-booking-resource.php
[edit]
[-] html-booking-data.php
[edit]
[-] html-calendar-schedule.php
[edit]
[-] html-booking-person.php
[edit]
[-] html-booking-pricing.php
[edit]
[-] html-create-booking-page.php
[edit]
[-] html-booking-availability.php
[edit]
[-] html-calendar-day.php
[edit]
[-] html-create-booking-page-2.php
[edit]