Fixed coding standards

This commit is contained in:
Claudio Sanches 2017-08-28 16:36:32 -03:00
parent 1c303c159c
commit c9dc585a7f
1 changed files with 31 additions and 17 deletions

View File

@ -1,16 +1,20 @@
<?php <?php
/**
* Product Categories Widget
*
* @author Automattic
* @category Widgets
* @package WooCommerce/Widgets
* @version 2.3.0
*/
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
exit; exit;
} }
/** /**
* Product Categories Widget. * Product categories widget class.
* *
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
* @version 2.3.0
* @extends WC_Widget * @extends WC_Widget
*/ */
class WC_Widget_Product_Categories extends WC_Widget { class WC_Widget_Product_Categories extends WC_Widget {
@ -91,8 +95,8 @@ class WC_Widget_Product_Categories extends WC_Widget {
* Output widget. * Output widget.
* *
* @see WP_Widget * @see WP_Widget
* @param array $args * @param array $args Widget arguments.
* @param array $instance * @param array $instance Widget instance.
*/ */
public function widget( $args, $instance ) { public function widget( $args, $instance ) {
global $wp_query, $post; global $wp_query, $post;
@ -103,8 +107,15 @@ class WC_Widget_Product_Categories extends WC_Widget {
$dropdown = isset( $instance['dropdown'] ) ? $instance['dropdown'] : $this->settings['dropdown']['std']; $dropdown = isset( $instance['dropdown'] ) ? $instance['dropdown'] : $this->settings['dropdown']['std'];
$orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : $this->settings['orderby']['std']; $orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : $this->settings['orderby']['std'];
$hide_empty = isset( $instance['hide_empty'] ) ? $instance['hide_empty'] : $this->settings['hide_empty']['std']; $hide_empty = isset( $instance['hide_empty'] ) ? $instance['hide_empty'] : $this->settings['hide_empty']['std'];
$dropdown_args = array( 'hide_empty' => $hide_empty ); $dropdown_args = array(
$list_args = array( 'show_count' => $count, 'hierarchical' => $hierarchical, 'taxonomy' => 'product_cat', 'hide_empty' => $hide_empty ); 'hide_empty' => $hide_empty,
);
$list_args = array(
'show_count' => $count,
'hierarchical' => $hierarchical,
'taxonomy' => 'product_cat',
'hide_empty' => $hide_empty,
);
$max_depth = absint( isset( $instance['max_depth'] ) ? $instance['max_depth'] : $this->settings['max_depth']['std'] ); $max_depth = absint( isset( $instance['max_depth'] ) ? $instance['max_depth'] : $this->settings['max_depth']['std'] );
$list_args['menu_order'] = false; $list_args['menu_order'] = false;
@ -125,7 +136,9 @@ class WC_Widget_Product_Categories extends WC_Widget {
$this->cat_ancestors = get_ancestors( $this->current_cat->term_id, 'product_cat' ); $this->cat_ancestors = get_ancestors( $this->current_cat->term_id, 'product_cat' );
} elseif ( is_singular( 'product' ) ) { } elseif ( is_singular( 'product' ) ) {
$product_category = wc_get_product_terms( $post->ID, 'product_cat', apply_filters( 'woocommerce_product_categories_widget_product_terms_args', array( 'orderby' => 'parent' ) ) ); $product_category = wc_get_product_terms( $post->ID, 'product_cat', apply_filters( 'woocommerce_product_categories_widget_product_terms_args', array(
'orderby' => 'parent',
) ) );
if ( ! empty( $product_category ) ) { if ( ! empty( $product_category ) ) {
$this->current_cat = end( $product_category ); $this->current_cat = end( $product_category );
@ -183,9 +196,10 @@ class WC_Widget_Product_Categories extends WC_Widget {
'hide_empty' => false, 'hide_empty' => false,
) )
); );
} } // End if().
$dropdown_args['include'] = $list_args['include'] = implode( ',', $include ); $list_args['include'] = implode( ',', $include );
$dropdown_args['include'] = $list_args['include'];
if ( empty( $include ) ) { if ( empty( $include ) ) {
return; return;
@ -197,7 +211,7 @@ class WC_Widget_Product_Categories extends WC_Widget {
$list_args['depth'] = 1; $list_args['depth'] = 1;
$list_args['child_of'] = 0; $list_args['child_of'] = 0;
$list_args['hierarchical'] = 1; $list_args['hierarchical'] = 1;
} } // End if().
$this->widget_start( $args, $instance ); $this->widget_start( $args, $instance );
@ -238,7 +252,7 @@ class WC_Widget_Product_Categories extends WC_Widget {
wp_list_categories( apply_filters( 'woocommerce_product_categories_widget_args', $list_args ) ); wp_list_categories( apply_filters( 'woocommerce_product_categories_widget_args', $list_args ) );
echo '</ul>'; echo '</ul>';
} } // End if().
$this->widget_end( $args ); $this->widget_end( $args );
} }