PHPCS Fixes

This commit is contained in:
Gerhard 2019-04-10 14:53:03 +02:00
parent 91e21644cf
commit 96906d9efa
1 changed files with 14 additions and 7 deletions

View File

@ -76,17 +76,20 @@ class WC_Settings_Products extends WC_Settings_Page {
echo wp_kses( echo wp_kses(
sprintf( sprintf(
/* translators: %s: URL to customizer. */ /* translators: %s: URL to customizer. */
__( 'Looking for the product display options? They can now be found in the Customizer. <a href="%s">Go see them in action here.</a>', 'woocommerce' ), esc_url( __( 'Looking for the product display options? They can now be found in the Customizer. <a href="%s">Go see them in action here.</a>', 'woocommerce' ),
esc_url(
add_query_arg( add_query_arg(
array( array(
'autofocus' => array( 'autofocus' => array(
'panel' => 'woocommerce', 'panel' => 'woocommerce',
), ),
'url' => wc_get_page_permalink( 'shop' ), 'url' => wc_get_page_permalink( 'shop' ),
), admin_url( 'customize.php' ) ),
admin_url( 'customize.php' )
) )
) )
), array( ),
array(
'a' => array( 'a' => array(
'href' => array(), 'href' => array(),
'title' => array(), 'title' => array(),
@ -122,7 +125,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' ),
@ -252,7 +256,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',
@ -313,8 +318,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',