| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- ?>
- <div id="general_product_data" class="panel woocommerce_options_panel">
- <div class="options_group show_if_external">
- <?php
- woocommerce_wp_text_input(
- array(
- 'id' => '_product_url',
- 'value' => is_callable( array( $product_object, 'get_product_url' ) ) ? $product_object->get_product_url( 'edit' ) : '',
- 'label' => __( 'Product URL', 'woocommerce' ),
- 'placeholder' => 'http://',
- 'description' => __( 'Enter the external URL to the product.', 'woocommerce' ),
- )
- );
- woocommerce_wp_text_input(
- array(
- 'id' => '_button_text',
- 'value' => is_callable( array( $product_object, 'get_button_text' ) ) ? $product_object->get_button_text( 'edit' ) : '',
- 'label' => __( 'Button text', 'woocommerce' ),
- 'placeholder' => _x( 'Buy product', 'placeholder', 'woocommerce' ),
- 'description' => __( 'This text will be shown on the button linking to the external product.', 'woocommerce' ),
- )
- );
- ?>
- </div>
- <div class="options_group pricing show_if_simple show_if_external hidden">
- <?php
- woocommerce_wp_text_input(
- array(
- 'id' => '_regular_price',
- 'value' => $product_object->get_regular_price( 'edit' ),
- 'label' => __( 'Regular price', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')',
- 'data_type' => 'price',
- )
- );
- woocommerce_wp_text_input(
- array(
- 'id' => '_sale_price',
- 'value' => $product_object->get_sale_price( 'edit' ),
- 'data_type' => 'price',
- 'label' => __( 'Sale price', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')',
- 'description' => '<a href="#" class="sale_schedule">' . __( 'Schedule', 'woocommerce' ) . '</a>',
- )
- );
- $sale_price_dates_from = $product_object->get_date_on_sale_from( 'edit' ) && ( $date = $product_object->get_date_on_sale_from( 'edit' )->getOffsetTimestamp() ) ? date_i18n( 'Y-m-d', $date ) : '';
- $sale_price_dates_to = $product_object->get_date_on_sale_to( 'edit' ) && ( $date = $product_object->get_date_on_sale_to( 'edit' )->getOffsetTimestamp() ) ? date_i18n( 'Y-m-d', $date ) : '';
- echo '<p class="form-field sale_price_dates_fields">
- <label for="_sale_price_dates_from">' . esc_html__( 'Sale price dates', 'woocommerce' ) . '</label>
- <input type="text" class="short" name="_sale_price_dates_from" id="_sale_price_dates_from" value="' . esc_attr( $sale_price_dates_from ) . '" placeholder="' . esc_html( _x( 'From…', 'placeholder', 'woocommerce' ) ) . ' YYYY-MM-DD" maxlength="10" pattern="' . esc_attr( apply_filters( 'woocommerce_date_input_html_pattern', '[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])' ) ) . '" />
- <input type="text" class="short" name="_sale_price_dates_to" id="_sale_price_dates_to" value="' . esc_attr( $sale_price_dates_to ) . '" placeholder="' . esc_html( _x( 'To…', 'placeholder', 'woocommerce' ) ) . ' YYYY-MM-DD" maxlength="10" pattern="' . esc_attr( apply_filters( 'woocommerce_date_input_html_pattern', '[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])' ) ) . '" />
- <a href="#" class="description cancel_sale_schedule">' . esc_html__( 'Cancel', 'woocommerce' ) . '</a>' . wc_help_tip( __( 'The sale will end at the beginning of the set date.', 'woocommerce' ) ) . '
- </p>';
- do_action( 'woocommerce_product_options_pricing' );
- ?>
- </div>
- <div class="options_group show_if_downloadable hidden">
- <div class="form-field downloadable_files">
- <label><?php esc_html_e( 'Downloadable files', 'woocommerce' ); ?></label>
- <table class="widefat">
- <thead>
- <tr>
- <th class="sort"> </th>
- <th><?php esc_html_e( 'Name', 'woocommerce' ); ?> <?php echo wc_help_tip( __( 'This is the name of the download shown to the customer.', 'woocommerce' ) ); ?></th>
- <th colspan="2"><?php esc_html_e( 'File URL', 'woocommerce' ); ?> <?php echo wc_help_tip( __( 'This is the URL or absolute path to the file which customers will get access to. URLs entered here should already be encoded.', 'woocommerce' ) ); ?></th>
- <th> </th>
- </tr>
- </thead>
- <tbody>
- <?php
- $downloadable_files = $product_object->get_downloads( 'edit' );
- if ( $downloadable_files ) {
- foreach ( $downloadable_files as $key => $file ) {
- include 'html-product-download.php';
- }
- }
- ?>
- </tbody>
- <tfoot>
- <tr>
- <th colspan="5">
- <a href="#" class="button insert" data-row="
- <?php
- $key = '';
- $file = array(
- 'file' => '',
- 'name' => '',
- );
- ob_start();
- require 'html-product-download.php';
- echo esc_attr( ob_get_clean() );
- ?>
- "><?php esc_html_e( 'Add File', 'woocommerce' ); ?></a>
- </th>
- </tr>
- </tfoot>
- </table>
- </div>
- <?php
- woocommerce_wp_text_input(
- array(
- 'id' => '_download_limit',
- 'value' => -1 === $product_object->get_download_limit( 'edit' ) ? '' : $product_object->get_download_limit( 'edit' ),
- 'label' => __( 'Download limit', 'woocommerce' ),
- 'placeholder' => __( 'Unlimited', 'woocommerce' ),
- 'description' => __( 'Leave blank for unlimited re-downloads.', 'woocommerce' ),
- 'type' => 'number',
- 'custom_attributes' => array(
- 'step' => '1',
- 'min' => '0',
- ),
- )
- );
- woocommerce_wp_text_input(
- array(
- 'id' => '_download_expiry',
- 'value' => -1 === $product_object->get_download_expiry( 'edit' ) ? '' : $product_object->get_download_expiry( 'edit' ),
- 'label' => __( 'Download expiry', 'woocommerce' ),
- 'placeholder' => __( 'Never', 'woocommerce' ),
- 'description' => __( 'Enter the number of days before a download link expires, or leave blank.', 'woocommerce' ),
- 'type' => 'number',
- 'custom_attributes' => array(
- 'step' => '1',
- 'min' => '0',
- ),
- )
- );
- do_action( 'woocommerce_product_options_downloads' );
- ?>
- </div>
- <?php if ( wc_tax_enabled() ) : ?>
- <div class="options_group show_if_simple show_if_external show_if_variable">
- <?php
- woocommerce_wp_select(
- array(
- 'id' => '_tax_status',
- 'value' => $product_object->get_tax_status( 'edit' ),
- 'label' => __( 'Tax status', 'woocommerce' ),
- 'options' => array(
- 'taxable' => __( 'Taxable', 'woocommerce' ),
- 'shipping' => __( 'Shipping only', 'woocommerce' ),
- 'none' => _x( 'None', 'Tax status', 'woocommerce' ),
- ),
- 'desc_tip' => 'true',
- 'description' => __( 'Define whether or not the entire product is taxable, or just the cost of shipping it.', 'woocommerce' ),
- )
- );
- woocommerce_wp_select(
- array(
- 'id' => '_tax_class',
- 'value' => $product_object->get_tax_class( 'edit' ),
- 'label' => __( 'Tax class', 'woocommerce' ),
- 'options' => wc_get_product_tax_class_options(),
- 'desc_tip' => 'true',
- 'description' => __( 'Choose a tax class for this product. Tax classes are used to apply different tax rates specific to certain types of product.', 'woocommerce' ),
- )
- );
- do_action( 'woocommerce_product_options_tax' );
- ?>
- </div>
- <?php endif; ?>
- <?php do_action( 'woocommerce_product_options_general_product_data' ); ?>
- </div>
|