phpcs
This commit is contained in:
parent
8051a0b0fc
commit
da6f425488
|
@ -76,7 +76,8 @@ class WC_Settings_Shipping extends WC_Settings_Page {
|
||||||
|
|
||||||
if ( '' === $current_section ) {
|
if ( '' === $current_section ) {
|
||||||
$settings = apply_filters(
|
$settings = apply_filters(
|
||||||
'woocommerce_shipping_settings', array(
|
'woocommerce_shipping_settings',
|
||||||
|
array(
|
||||||
|
|
||||||
array(
|
array(
|
||||||
'title' => __( 'Shipping options', 'woocommerce' ),
|
'title' => __( 'Shipping options', 'woocommerce' ),
|
||||||
|
@ -247,7 +248,9 @@ class WC_Settings_Shipping extends WC_Settings_Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_localize_script(
|
wp_localize_script(
|
||||||
'wc-shipping-zone-methods', 'shippingZoneMethodsLocalizeScript', array(
|
'wc-shipping-zone-methods',
|
||||||
|
'shippingZoneMethodsLocalizeScript',
|
||||||
|
array(
|
||||||
'methods' => $zone->get_shipping_methods( false, 'json' ),
|
'methods' => $zone->get_shipping_methods( false, 'json' ),
|
||||||
'zone_name' => $zone->get_zone_name(),
|
'zone_name' => $zone->get_zone_name(),
|
||||||
'zone_id' => $zone->get_id(),
|
'zone_id' => $zone->get_id(),
|
||||||
|
@ -277,7 +280,9 @@ class WC_Settings_Shipping extends WC_Settings_Page {
|
||||||
$method_count = wc_get_shipping_method_count();
|
$method_count = wc_get_shipping_method_count();
|
||||||
|
|
||||||
wp_localize_script(
|
wp_localize_script(
|
||||||
'wc-shipping-zones', 'shippingZonesLocalizeScript', array(
|
'wc-shipping-zones',
|
||||||
|
'shippingZonesLocalizeScript',
|
||||||
|
array(
|
||||||
'zones' => WC_Shipping_Zones::get_zones( 'json' ),
|
'zones' => WC_Shipping_Zones::get_zones( 'json' ),
|
||||||
'default_zone' => array(
|
'default_zone' => array(
|
||||||
'zone_id' => 0,
|
'zone_id' => 0,
|
||||||
|
@ -336,7 +341,9 @@ class WC_Settings_Shipping extends WC_Settings_Page {
|
||||||
protected function output_shipping_class_screen() {
|
protected function output_shipping_class_screen() {
|
||||||
$wc_shipping = WC_Shipping::instance();
|
$wc_shipping = WC_Shipping::instance();
|
||||||
wp_localize_script(
|
wp_localize_script(
|
||||||
'wc-shipping-classes', 'shippingClassesLocalizeScript', array(
|
'wc-shipping-classes',
|
||||||
|
'shippingClassesLocalizeScript',
|
||||||
|
array(
|
||||||
'classes' => $wc_shipping->get_shipping_classes(),
|
'classes' => $wc_shipping->get_shipping_classes(),
|
||||||
'default_shipping_class' => array(
|
'default_shipping_class' => array(
|
||||||
'term_id' => 0,
|
'term_id' => 0,
|
||||||
|
@ -354,7 +361,8 @@ class WC_Settings_Shipping extends WC_Settings_Page {
|
||||||
|
|
||||||
// Extendable columns to show on the shipping classes screen.
|
// Extendable columns to show on the shipping classes screen.
|
||||||
$shipping_class_columns = apply_filters(
|
$shipping_class_columns = apply_filters(
|
||||||
'woocommerce_shipping_classes_columns', array(
|
'woocommerce_shipping_classes_columns',
|
||||||
|
array(
|
||||||
'wc-shipping-class-name' => __( 'Shipping class', 'woocommerce' ),
|
'wc-shipping-class-name' => __( 'Shipping class', 'woocommerce' ),
|
||||||
'wc-shipping-class-slug' => __( 'Slug', 'woocommerce' ),
|
'wc-shipping-class-slug' => __( 'Slug', 'woocommerce' ),
|
||||||
'wc-shipping-class-description' => __( 'Description', 'woocommerce' ),
|
'wc-shipping-class-description' => __( 'Description', 'woocommerce' ),
|
||||||
|
|
|
@ -49,7 +49,9 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
foreach ( $countries as $country_code ) {
|
foreach ( $countries as $country_code ) {
|
||||||
echo '<option value="country:' . esc_attr( $country_code ) . '"' . wc_selected( "country:$country_code", $locations ) . ' alt="' . esc_attr( $continent['name'] ) . '">' . esc_html( ' ' . $allowed_countries[ $country_code ] ) . '</option>';
|
echo '<option value="country:' . esc_attr( $country_code ) . '"' . wc_selected( "country:$country_code", $locations ) . ' alt="' . esc_attr( $continent['name'] ) . '">' . esc_html( ' ' . $allowed_countries[ $country_code ] ) . '</option>';
|
||||||
|
|
||||||
if ( $states = WC()->countries->get_states( $country_code ) ) {
|
$states = WC()->countries->get_states( $country_code );
|
||||||
|
|
||||||
|
if ( $states ) {
|
||||||
foreach ( $states as $state_code => $state_name ) {
|
foreach ( $states as $state_code => $state_name ) {
|
||||||
echo '<option value="state:' . esc_attr( $country_code . ':' . $state_code ) . '"' . wc_selected( "state:$country_code:$state_code", $locations ) . ' alt="' . esc_attr( $continent['name'] . ' ' . $allowed_countries[ $country_code ] ) . '">' . esc_html( ' ' . $state_name ) . '</option>';
|
echo '<option value="state:' . esc_attr( $country_code . ':' . $state_code ) . '"' . wc_selected( "state:$country_code:$state_code", $locations ) . ' alt="' . esc_attr( $continent['name'] . ' ' . $allowed_countries[ $country_code ] ) . '">' . esc_html( ' ' . $state_name ) . '</option>';
|
||||||
}
|
}
|
||||||
|
@ -138,8 +140,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
<header class="wc-backbone-modal-header">
|
<header class="wc-backbone-modal-header">
|
||||||
<h1>
|
<h1>
|
||||||
<?php
|
<?php
|
||||||
/* translators: %s: shipping method title */
|
|
||||||
printf(
|
printf(
|
||||||
|
/* translators: %s: shipping method title */
|
||||||
esc_html__( '%s Settings', 'woocommerce' ),
|
esc_html__( '%s Settings', 'woocommerce' ),
|
||||||
'{{{ data.method.method_title }}}'
|
'{{{ data.method.method_title }}}'
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue