PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
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="calendar_month" value="<?php echo absint( $month ); ?>" /> <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( array( 'calendar_year' => $year, 'calendar_month' => $month - 1, ) ) ); ?>">←</a> <div> <select name="calendar_month"> <?php for ( $i = 1; $i <= 12; $i ++ ) : ?> <option value="<?php echo $i; ?>" <?php selected( $month, $i ); ?>><?php echo ucfirst( date_i18n( 'M', strtotime( '2013-' . $i . '-01' ) ) ); ?></option> <?php endfor; ?> </select> </div> <div> <select name="calendar_year"> <?php for ( $i = ( date( 'Y' ) - 1 ); $i <= ( date( 'Y' ) + 5 ); $i ++ ) : ?> <option value="<?php echo $i; ?>" <?php selected( $year, $i ); ?>><?php echo $i; ?></option> <?php endfor; ?> </select> </div> <a class="next" href="<?php echo esc_url( add_query_arg( array( 'calendar_year' => $year, 'calendar_month' => $month + 1, ) ) ); ?>">→</a> </div> <div class="views"> <a class="day" href="<?php echo esc_url( add_query_arg( 'view', 'day' ) ); ?>"><?php _e( 'Day View', 'woocommerce-bookings' ); ?></a> </div> <script type="text/javascript"> jQuery(".tablenav select").change(function() { jQuery("#mainform").submit(); }); </script> </div> <table class="wc_bookings_calendar widefat"> <thead> <tr> <?php for ( $ii = get_option( 'start_of_week', 1 ); $ii < get_option( 'start_of_week', 1 ) + 7; $ii ++ ) : ?> <th><?php echo date_i18n( _x( 'l', 'date format', 'woocommerce-bookings' ), strtotime( "next sunday +{$ii} day" ) ); ?></th> <?php endfor; ?> </tr> </thead> <tbody> <tr> <?php $timestamp = $start_time; $index = 0; while ( $timestamp <= $end_time ) : ?> <td width="14.285%" class="<?php if ( date( 'n', $timestamp ) != absint( $month ) ) { echo 'calendar-diff-month'; } ?>"> <a href="<?php echo admin_url( 'edit.php?post_type=wc_booking&page=booking_calendar&view=day&tab=calendar&calendar_day=' . date( 'Y-m-d', $timestamp ) ); ?>"> <?php echo date( 'd', $timestamp ); ?> </a> <div class="bookings"> <ul> <?php $this->list_bookings( date( 'd', $timestamp ), date( 'm', $timestamp ), date( 'Y', $timestamp ) ); ?> </ul> </div> </td> <?php $timestamp = strtotime( '+1 day', $timestamp ); $index ++; if ( 0 === $index % 7 ) { echo '</tr><tr>'; } endwhile; ?> </tr> </tbody> </table> </form> </div>
[+]
..
[-] html-booking-availability.php
[edit]
[-] .views.php
[edit]
[-] html-notifications-page.php
[edit]
[-] html-booking-pricing-fields.php
[edit]
[-] html-booking-pricing.php
[edit]
[-] html-booking-person.php
[edit]
[-] html-booking-resources.php
[edit]
[-] html-booking-availability-fields.php
[edit]
[-] html-global-availability-settings.php
[edit]
[-] html-settings-page.php
[edit]
[-] html-booking-resource.php
[edit]
[-] html-booking-data.php
[edit]
[-] html-booking-persons.php
[edit]
[-] html-booking-tab.php
[edit]
[-] html-create-booking-page.php
[edit]
[-] html-calendar-month.php
[edit]
[-] html-create-booking-page-2.php
[edit]
[-] html-calendar-day.php
[edit]