2012-04-05 16:51:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WC_Product_Cat_Dropdown_Walker class
|
2012-08-14 22:43:48 +00:00
|
|
|
*
|
2018-03-09 19:10:45 +00:00
|
|
|
* @package WooCommerce/Classes/Walkers
|
2018-03-09 19:34:28 +00:00
|
|
|
* @version 3.4.0
|
2012-04-05 16:51:28 +00:00
|
|
|
*/
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2018-03-09 19:10:45 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2018-03-09 19:10:45 +00:00
|
|
|
if ( class_exists( 'WC_Product_Cat_Dropdown_Walker', false ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-12-16 11:43:58 +00:00
|
|
|
|
2018-03-09 19:10:45 +00:00
|
|
|
/**
|
|
|
|
* Product category dropdown walker class.
|
|
|
|
*/
|
2012-04-05 16:51:28 +00:00
|
|
|
class WC_Product_Cat_Dropdown_Walker extends Walker {
|
|
|
|
|
2016-01-06 19:02:05 +00:00
|
|
|
/**
|
|
|
|
* What the class handles.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-12-16 11:43:58 +00:00
|
|
|
public $tree_type = 'category';
|
2012-04-05 16:51:28 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-06 19:02:05 +00:00
|
|
|
* DB fields to use.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $db_fields = array(
|
|
|
|
'parent' => 'parent',
|
|
|
|
'id' => 'term_id',
|
2016-08-27 01:46:45 +00:00
|
|
|
'slug' => 'slug',
|
2016-01-06 19:02:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the list before the elements are added.
|
|
|
|
*
|
2012-04-05 16:51:28 +00:00
|
|
|
* @see Walker::start_el()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2018-03-09 19:10:45 +00:00
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
|
|
|
* @param object $cat Category.
|
|
|
|
* @param int $depth Depth of category in reference to parents.
|
|
|
|
* @param array $args Arguments.
|
|
|
|
* @param int $current_object_id Current object ID.
|
2012-04-05 16:51:28 +00:00
|
|
|
*/
|
2014-03-17 16:51:34 +00:00
|
|
|
public function start_el( &$output, $cat, $depth = 0, $args = array(), $current_object_id = 0 ) {
|
2013-01-14 11:56:50 +00:00
|
|
|
|
2016-07-29 09:51:58 +00:00
|
|
|
if ( ! empty( $args['hierarchical'] ) ) {
|
2016-09-02 01:51:31 +00:00
|
|
|
$pad = str_repeat( ' ', $depth * 3 );
|
2016-07-29 09:51:58 +00:00
|
|
|
} else {
|
2013-01-14 11:56:50 +00:00
|
|
|
$pad = '';
|
2016-07-29 09:51:58 +00:00
|
|
|
}
|
2012-04-05 16:51:28 +00:00
|
|
|
|
|
|
|
$cat_name = apply_filters( 'list_product_cats', $cat->name, $cat );
|
2016-09-09 00:14:28 +00:00
|
|
|
$value = ( isset( $args['value'] ) && 'id' === $args['value'] ) ? $cat->term_id : $cat->slug;
|
2018-03-09 19:10:45 +00:00
|
|
|
$output .= "\t<option class=\"level-$depth\" value=\"" . esc_attr( $value ) . '"';
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2018-03-09 19:10:45 +00:00
|
|
|
if ( $value === $args['selected'] || ( is_array( $args['selected'] ) && in_array( $value, $args['selected'], true ) ) ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= ' selected="selected"';
|
2016-07-29 09:51:58 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= '>';
|
2018-03-09 19:10:45 +00:00
|
|
|
$output .= esc_html( $pad . $cat_name );
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2016-07-29 09:51:58 +00:00
|
|
|
if ( ! empty( $args['show_count'] ) ) {
|
|
|
|
$output .= ' (' . absint( $cat->count ) . ')';
|
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= "</option>\n";
|
|
|
|
}
|
2014-03-17 16:51:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Traverse elements to create list from elements.
|
|
|
|
*
|
|
|
|
* Display one element if the element doesn't have any children otherwise,
|
2015-11-03 13:31:20 +00:00
|
|
|
* display the element and its children. Will only traverse up to the max.
|
|
|
|
* depth and no ignore elements under that depth. It is possible to set the.
|
2014-03-17 16:51:34 +00:00
|
|
|
* max depth to include all depths, see walk() method.
|
|
|
|
*
|
|
|
|
* This method shouldn't be called directly, use the walk() method instead.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2018-03-09 19:10:45 +00:00
|
|
|
* @param object $element Data object.
|
|
|
|
* @param array $children_elements List of elements to continue traversing.
|
|
|
|
* @param int $max_depth Max depth to traverse.
|
|
|
|
* @param int $depth Depth of current element.
|
|
|
|
* @param array $args Arguments.
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2014-03-17 16:51:34 +00:00
|
|
|
* @return null Null on failure with no changes to parameters.
|
|
|
|
*/
|
|
|
|
public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
|
2016-02-05 12:31:50 +00:00
|
|
|
if ( ! $element || ( 0 === $element->count && ! empty( $args[0]['hide_empty'] ) ) ) {
|
2014-03-17 16:51:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
2014-09-20 19:35:47 +00:00
|
|
|
}
|
|
|
|
}
|