PHPCS fixes
This commit is contained in:
parent
deaaa5d1d8
commit
8716c7451c
|
@ -51,7 +51,8 @@ class WC_Settings_General extends WC_Settings_Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
$settings = apply_filters(
|
$settings = apply_filters(
|
||||||
'woocommerce_general_settings', array(
|
'woocommerce_general_settings',
|
||||||
|
array(
|
||||||
|
|
||||||
array(
|
array(
|
||||||
'title' => __( 'Store Address', 'woocommerce' ),
|
'title' => __( 'Store Address', 'woocommerce' ),
|
||||||
|
|
|
@ -78,7 +78,8 @@ class WC_Settings_Products extends WC_Settings_Page {
|
||||||
public function get_settings( $current_section = '' ) {
|
public function get_settings( $current_section = '' ) {
|
||||||
if ( 'inventory' === $current_section ) {
|
if ( 'inventory' === $current_section ) {
|
||||||
$settings = apply_filters(
|
$settings = apply_filters(
|
||||||
'woocommerce_inventory_settings', array(
|
'woocommerce_inventory_settings',
|
||||||
|
array(
|
||||||
|
|
||||||
array(
|
array(
|
||||||
'title' => __( 'Inventory', 'woocommerce' ),
|
'title' => __( 'Inventory', 'woocommerce' ),
|
||||||
|
@ -208,7 +209,8 @@ class WC_Settings_Products extends WC_Settings_Page {
|
||||||
|
|
||||||
} elseif ( 'downloadable' === $current_section ) {
|
} elseif ( 'downloadable' === $current_section ) {
|
||||||
$settings = apply_filters(
|
$settings = apply_filters(
|
||||||
'woocommerce_downloadable_products_settings', array(
|
'woocommerce_downloadable_products_settings',
|
||||||
|
array(
|
||||||
array(
|
array(
|
||||||
'title' => __( 'Downloadable products', 'woocommerce' ),
|
'title' => __( 'Downloadable products', 'woocommerce' ),
|
||||||
'type' => 'title',
|
'type' => 'title',
|
||||||
|
@ -269,8 +271,10 @@ class WC_Settings_Products extends WC_Settings_Page {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$settings = apply_filters(
|
$settings = apply_filters(
|
||||||
'woocommerce_product_settings', apply_filters(
|
'woocommerce_product_settings',
|
||||||
'woocommerce_products_general_settings', array(
|
apply_filters(
|
||||||
|
'woocommerce_products_general_settings',
|
||||||
|
array(
|
||||||
array(
|
array(
|
||||||
'title' => __( 'Shop pages', 'woocommerce' ),
|
'title' => __( 'Shop pages', 'woocommerce' ),
|
||||||
'type' => 'title',
|
'type' => 'title',
|
||||||
|
|
Loading…
Reference in New Issue