PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
woocommerce-bookings
/
includes
/
admin
/
views
<div class="wrap woocommerce"> <h2><?php _e( 'Calendar', 'woocommerce-bookings' ); ?></h2> <form method="get" id="mainform" enctype="multipart/form-data" class="wc_bookings_calendar_form"> <input type="hidden" name="post_type" value="wc_booking" /> <input type="hidden" name="page" value="booking_calendar" /> <input type="hidden" name="view" value="<?php echo esc_attr( $view ); ?>" /> <input type="hidden" name="tab" value="calendar" /> <div class="tablenav"> <div class="filters"> <select id="calendar-bookings-filter" name="filter_bookings" class="wc-enhanced-select" style="width:200px"> <option value=""><?php _e( 'Filter Bookings', 'woocommerce-bookings' ); ?></option> <?php $product_filters = $this->product_filters(); if ( $product_filters ) : ?> <optgroup label="<?php _e( 'By bookable product', 'woocommerce-bookings' ); ?>"> <?php foreach ( $product_filters as $filter_id => $filter_name ) : ?> <option value="<?php echo $filter_id; ?>" <?php selected( $product_filter, $filter_id ); ?>><?php echo $filter_name; ?></option> <?php endforeach; ?> </optgroup> <?php endif; ?> <?php $resources_filters = $this->resources_filters(); if ( $resources_filters ) : ?> <optgroup label="<?php _e( 'By resource', 'woocommerce-bookings' ); ?>"> <?php foreach ( $resources_filters as $filter_id => $filter_name ) : ?> <option value="<?php echo $filter_id; ?>" <?php selected( $product_filter, $filter_id ); ?>><?php echo $filter_name; ?></option> <?php endforeach; ?> </optgroup> <?php endif; ?> </select> </div> <div class="date_selector"> <a class="prev" href="<?php echo esc_url( add_query_arg( 'calendar_day', date_i18n( 'Y-m-d', strtotime( '-1 day', strtotime( $day ) ) ) ) ); ?>">←</a> <div> <input type="text" name="calendar_day" class="calendar_day" placeholder="yyyy-mm-dd" value="<?php echo esc_attr( $day ); ?>" /> </div> <a class="next" href="<?php echo esc_url( add_query_arg( 'calendar_day', date_i18n( 'Y-m-d', strtotime( '+1 day', strtotime( $day ) ) ) ) ); ?>">→</a> </div> <div class="views"> <a class="month" href="<?php echo esc_url( add_query_arg( 'view', 'month' ) ); ?>"><?php _e( 'Month View', 'woocommerce-bookings' ); ?></a> </div> <script type="text/javascript"> <?php global $wp_locale; ?> jQuery(function() { jQuery(".tablenav select, .tablenav input").change(function() { jQuery("#mainform").submit(); }); jQuery( '.calendar_day' ).datepicker({ dateFormat: 'yy-mm-dd', firstDay: <?php echo get_option( 'start_of_week' ); ?>, monthNames: <?php echo json_encode( array_values( $wp_locale->month ) ); ?>, monthNamesShort: <?php echo json_encode( array_values( $wp_locale->month_abbrev ) ); ?>, dayNames: <?php echo json_encode( array_values( $wp_locale->weekday ) ); ?>, dayNamesShort: <?php echo json_encode( array_values( $wp_locale->weekday_abbrev ) ); ?>, dayNamesMin: <?php echo json_encode( array_values( $wp_locale->weekday_initial ) ); ?>, numberOfMonths: 1, }); // Tooltips jQuery(".bookings li").tipTip({ 'attribute' : 'data-tip', 'fadeIn' : 50, 'fadeOut' : 50, 'delay' : 200 }); }); </script> </div> <div class="calendar_days"> <ul class="hours"> <?php for ( $i = 0; $i < 24; $i ++ ) : ?> <li><label> <?php if ( 0 != $i && 24 != $i ) { echo date_i18n( wc_time_format(), strtotime( "midnight +{$i} hour" ) ); } ?> </label></li> <?php endfor; ?> </ul> <ul class="bookings"> <?php $this->list_bookings_for_day(); ?> </ul> </div> </form> </div>
[+]
..
[-] html-booking-tab.php
[edit]
[-] html-notifications-page.php
[edit]
[-] html-settings-page.php
[edit]
[-] html-booking-persons.php
[edit]
[-] html-calendar-day.php
[edit]
[-] html-booking-person.php
[edit]
[-] html-booking-data.php
[edit]
[-] html-booking-pricing-fields.php
[edit]
[-] html-booking-availability.php
[edit]
[-] html-global-availability-settings.php
[edit]
[-] html-calendar-month.php
[edit]
[-] html-booking-pricing.php
[edit]
[-] html-booking-resource.php
[edit]
[-] html-booking-availability-fields.php
[edit]
[-] html-create-booking-page.php
[edit]
[-] html-booking-resources.php
[edit]
[-] html-create-booking-page-2.php
[edit]