PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
woocommerce-bookings
/
includes
/
admin
/
views
<div id="bookings_resources" class="woocommerce_options_panel panel wc-metaboxes-wrapper"> <div class="options_group" id="resource_options"> <?php woocommerce_wp_text_input( array( 'id' => '_wc_booking_resource_label', 'placeholder' => __( 'Type', 'woocommerce-bookings' ), 'label' => __( 'Label', 'woocommerce-bookings' ), 'value' => $bookable_product->get_resource_label( 'edit' ), 'desc_tip' => true, 'description' => __( 'The label shown on the frontend if the resource is customer defined.', 'woocommerce-bookings' ), ) ); ?> <?php woocommerce_wp_select( array( 'id' => '_wc_booking_resources_assignment', 'label' => __( 'Resources are...', 'woocommerce-bookings' ), 'description' => '', 'desc_tip' => true, 'value' => $bookable_product->get_resources_assignment( 'edit' ), 'options' => array( 'customer' => __( 'Customer selected', 'woocommerce-bookings' ), 'automatic' => __( 'Automatically assigned', 'woocommerce-bookings' ), ), 'description' => __( 'Customer selected resources allow customers to choose one from the booking form.', 'woocommerce-bookings' ), ) ); ?> </div> <div class="options_group"> <div class="toolbar"> <h3><?php esc_html_e( 'Resources', 'woocommerce-bookings' ); ?></h3> <span class="toolbar_links"><a href="#" class="close_all"><?php esc_html_e( 'Close all', 'woocommerce-bookings' ); ?></a><a href="#" class="expand_all"><?php esc_html_e( 'Expand all', 'woocommerce-bookings' ); ?></a></span> </div> <div class="woocommerce_bookable_resources wc-metaboxes"> <div id="message" class="inline woocommerce-message updated" style="margin: 1em 0;"> <p><?php esc_html_e( 'Resources are used if you have multiple bookable items, e.g. room types, instructors or ticket types. Availability for resources is global across all bookable products.', 'woocommerce-bookings' ); ?></p> </div> <?php global $post, $wpdb; $all_resources = self::get_booking_resources(); $product_resources = $bookable_product->get_resource_ids( 'edit' ); $resource_base_costs = $bookable_product->get_resource_base_costs( 'edit' ); $resource_block_costs = $bookable_product->get_resource_block_costs( 'edit' ); $loop = 0; if ( $product_resources ) { foreach ( $product_resources as $resource_id ) { $resource = new WC_Product_Booking_Resource( $resource_id ); $resource_base_cost = isset( $resource_base_costs[ $resource_id ] ) ? $resource_base_costs[ $resource_id ] : ''; $resource_block_cost = isset( $resource_block_costs[ $resource_id ] ) ? $resource_block_costs[ $resource_id ] : ''; include 'html-booking-resource.php'; $loop++; } } ?> </div> <p class="toolbar"> <button type="button" class="button button-primary add_resource"><?php esc_html_e( 'Add/link Resource', 'woocommerce-bookings' ); ?></button> <select name="add_resource_id" class="add_resource_id"> <option value=""><?php esc_html_e( 'New resource', 'woocommerce-bookings' ); ?></option> <?php if ( $all_resources ) { foreach ( $all_resources as $resource ) { if ( in_array( $resource->ID, $product_resources ) ) { continue; // ignore resources that's already on the product } echo '<option value="' . esc_attr( $resource->ID ) . '">#' . absint( $resource->ID ) . ' - ' . esc_html( $resource->post_title ) . '</option>'; } } ?> </select> <a href="<?php echo esc_url( admin_url( 'edit.php?post_type=bookable_resource' ) ); ?>" target="_blank"><?php esc_html_e( 'Manage Resources', 'woocommerce-bookings' ); ?></a> </p> </div> </div>
[+]
..
[-] 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]