/wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php
https://gitlab.com/webkod3r/tripolis · PHP · 319 lines · 292 code · 24 blank · 3 comment · 7 complexity · 5dd39a4ac67e88ad4baf15dfb4903e44 MD5 · raw file
- <?php
- /**
- * Admin View: Bulk Edit Products
- */
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly
- }
- ?>
- <fieldset class="inline-edit-col-right">
- <div id="woocommerce-fields-bulk" class="inline-edit-col">
- <h4><?php _e( 'Product Data', 'woocommerce' ); ?></h4>
- <?php do_action( 'woocommerce_product_bulk_edit_start' ); ?>
- <div class="inline-edit-group">
- <label class="alignleft">
- <span class="title"><?php _e( 'Price', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="change_regular_price change_to" name="change_regular_price">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- '1' => __( 'Change to:', 'woocommerce' ),
- '2' => __( 'Increase by (fixed amount or %):', 'woocommerce' ),
- '3' => __( 'Decrease by (fixed amount or %):', 'woocommerce' )
- );
- foreach ($options as $key => $value) {
- echo '<option value="' . esc_attr( $key ) . '">' . $value . '</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label class="change-input">
- <input type="text" name="_regular_price" class="text regular_price" placeholder="<?php echo sprintf( __( 'Enter price (%s)', 'woocommerce' ), get_woocommerce_currency_symbol() ); ?>" value="" />
- </label>
- </div>
- <div class="inline-edit-group">
- <label class="alignleft">
- <span class="title"><?php _e( 'Sale', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="change_sale_price change_to" name="change_sale_price">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- '1' => __( 'Change to:', 'woocommerce' ),
- '2' => __( 'Increase by (fixed amount or %):', 'woocommerce' ),
- '3' => __( 'Decrease by (fixed amount or %):', 'woocommerce' ),
- '4' => __( 'Decrease regular price by (fixed amount or %):', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">' . $value . '</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label class="change-input">
- <input type="text" name="_sale_price" class="text sale_price" placeholder="<?php echo sprintf( __( 'Enter sale price (%s)', 'woocommerce' ), get_woocommerce_currency_symbol() ); ?>" value="" />
- </label>
- </div>
- <?php if ( wc_tax_enabled() ) : ?>
- <label>
- <span class="title"><?php _e( 'Tax Status', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="tax_status" name="_tax_status">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'taxable' => __( 'Taxable', 'woocommerce' ),
- 'shipping' => __( 'Shipping only', 'woocommerce' ),
- 'none' => _x( 'None', 'Tax status', 'woocommerce' )
- );
- foreach ($options as $key => $value) {
- echo '<option value="' . esc_attr( $key ) . '">' . $value . '</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label>
- <span class="title"><?php _e( 'Tax Class', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="tax_class" name="_tax_class">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'standard' => __( 'Standard', 'woocommerce' )
- );
- $tax_classes = WC_Tax::get_tax_classes();
- if ( $tax_classes )
- foreach ( $tax_classes as $class ) {
- $options[ sanitize_title( $class ) ] = esc_html( $class );
- }
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">' . $value . '</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <?php endif; ?>
- <?php if ( wc_product_weight_enabled() ) : ?>
- <div class="inline-edit-group">
- <label class="alignleft">
- <span class="title"><?php _e( 'Weight', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="change_weight change_to" name="change_weight">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- '1' => __( 'Change to:', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label class="change-input">
- <input type="text" name="_weight" class="text weight" placeholder="<?php echo sprintf( __( '%s (%s)', 'woocommerce' ), wc_format_localized_decimal( 0 ), get_option( 'woocommerce_weight_unit' ) ); ?>" value="">
- </label>
- </div>
- <?php endif; ?>
- <?php if ( wc_product_dimensions_enabled() ) : ?>
- <div class="inline-edit-group dimensions">
- <label class="alignleft">
- <span class="title"><?php _e( 'L/W/H', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="change_dimensions change_to" name="change_dimensions">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- '1' => __( 'Change to:', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label class="change-input">
- <input type="text" name="_length" class="text length" placeholder="<?php echo sprintf( __( 'Length (%s)', 'woocommerce' ), get_option( 'woocommerce_dimension_unit' ) ); ?>" value="">
- <input type="text" name="_width" class="text width" placeholder="<?php echo sprintf( __( 'Width (%s)', 'woocommerce' ), get_option( 'woocommerce_dimension_unit' ) ); ?>" value="">
- <input type="text" name="_height" class="text height" placeholder="<?php echo sprintf( __( 'Height (%s)', 'woocommerce' ), get_option( 'woocommerce_dimension_unit' ) ); ?>" value="">
- </label>
- </div>
- <?php endif; ?>
- <label>
- <span class="title"><?php _e( 'Shipping class', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="shipping_class" name="_shipping_class">
- <option value=""><?php _e( '— No Change —', 'woocommerce' ); ?></option>
- <option value="_no_shipping_class"><?php _e( 'No shipping class', 'woocommerce' ); ?></option>
- <?php
- foreach ( $shipping_class as $key => $value ) {
- echo '<option value="' . esc_attr( $value->slug ) . '">'. $value->name .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label>
- <span class="title"><?php _e( 'Visibility', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="visibility" name="_visibility">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'visible' => __( 'Catalog & search', 'woocommerce' ),
- 'catalog' => __( 'Catalog', 'woocommerce' ),
- 'search' => __( 'Search', 'woocommerce' ),
- 'hidden' => __( 'Hidden', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label>
- <span class="title"><?php _e( 'Featured', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="featured" name="_featured">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'yes' => __( 'Yes', 'woocommerce' ),
- 'no' => __( 'No', 'woocommerce' )
- );
- foreach ($options as $key => $value) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label>
- <span class="title"><?php _e( 'In stock?', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="stock_status" name="_stock_status">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'instock' => __( 'In stock', 'woocommerce' ),
- 'outofstock' => __( 'Out of stock', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <?php if ( 'yes' == get_option( 'woocommerce_manage_stock' ) ) : ?>
- <label>
- <span class="title"><?php _e( 'Manage stock?', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="manage_stock" name="_manage_stock">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'yes' => __( 'Yes', 'woocommerce' ),
- 'no' => __( 'No', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <div class="inline-edit-group">
- <label class="alignleft stock_qty_field">
- <span class="title"><?php _e( 'Stock Qty', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="change_stock change_to" name="change_stock">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- '1' => __( 'Change to:', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <label class="change-input">
- <input type="text" name="_stock" class="text stock" placeholder="<?php esc_attr_e( 'Stock Qty', 'woocommerce' ); ?>" step="any" value="">
- </label>
- </div>
- <label>
- <span class="title"><?php _e( 'Backorders?', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="backorders" name="_backorders">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'no' => __( 'Do not allow', 'woocommerce' ),
- 'notify' => __( 'Allow, but notify customer', 'woocommerce' ),
- 'yes' => __( 'Allow', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">'. $value .'</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <?php endif; ?>
- <label>
- <span class="title"><?php esc_html_e( 'Sold Individually?', 'woocommerce' ); ?></span>
- <span class="input-text-wrap">
- <select class="sold_individually" name="_sold_individually">
- <?php
- $options = array(
- '' => __( '— No Change —', 'woocommerce' ),
- 'yes' => __( 'Yes', 'woocommerce' ),
- 'no' => __( 'No', 'woocommerce' )
- );
- foreach ( $options as $key => $value ) {
- echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
- }
- ?>
- </select>
- </span>
- </label>
- <?php do_action( 'woocommerce_product_bulk_edit_end' ); ?>
- <input type="hidden" name="woocommerce_bulk_edit" value="1" />
- <input type="hidden" name="woocommerce_bulk_edit_nonce" value="<?php echo wp_create_nonce( 'woocommerce_bulk_edit_nonce' ); ?>" />
- </div>
- </fieldset>