2012-04-05 16:51:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WC_Product_Cat_List_Walker class
|
2012-08-14 22:43:48 +00:00
|
|
|
*
|
|
|
|
* @extends Walker
|
|
|
|
* @class WC_Product_Cat_Dropdown_Walker
|
2014-12-16 11:45:02 +00:00
|
|
|
* @version 2.3.0
|
2012-08-14 22:43:48 +00:00
|
|
|
* @package WooCommerce/Classes/Walkers
|
|
|
|
* @author WooThemes
|
2012-04-05 16:51:28 +00:00
|
|
|
*/
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-09-20 19:35:47 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2017-02-16 11:46:01 +00:00
|
|
|
if ( ! class_exists( 'WC_Product_Cat_List_Walker', false ) ) :
|
2014-12-16 11:45:02 +00:00
|
|
|
|
2012-04-05 16:51:28 +00:00
|
|
|
class WC_Product_Cat_List_Walker extends Walker {
|
|
|
|
|
2016-01-06 19:02:05 +00:00
|
|
|
/**
|
|
|
|
* What the class handles.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-12-16 11:45:02 +00:00
|
|
|
public $tree_type = 'product_cat';
|
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_lvl()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
|
|
|
* @param int $depth Depth of category. Used for tab indentation.
|
|
|
|
* @param array $args Will only append content if style argument value is 'list'.
|
|
|
|
*/
|
2014-03-17 16:51:34 +00:00
|
|
|
public function start_lvl( &$output, $depth = 0, $args = array() ) {
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( 'list' != $args['style'] ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
return;
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
2012-04-05 16:51:28 +00:00
|
|
|
|
2016-09-02 01:51:31 +00:00
|
|
|
$indent = str_repeat( "\t", $depth );
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= "$indent<ul class='children'>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-06 19:02:05 +00:00
|
|
|
* Ends the list of after the elements are added.
|
|
|
|
*
|
2012-04-05 16:51:28 +00:00
|
|
|
* @see Walker::end_lvl()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
|
|
|
* @param int $depth Depth of category. Used for tab indentation.
|
|
|
|
* @param array $args Will only append content if style argument value is 'list'.
|
|
|
|
*/
|
2014-03-17 16:51:34 +00:00
|
|
|
public function end_lvl( &$output, $depth = 0, $args = array() ) {
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( 'list' != $args['style'] ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
return;
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
2012-04-05 16:51:28 +00:00
|
|
|
|
2016-09-02 01:51:31 +00:00
|
|
|
$indent = str_repeat( "\t", $depth );
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= "$indent</ul>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-06 19:02:05 +00:00
|
|
|
* Start the element output.
|
|
|
|
*
|
2012-04-05 16:51:28 +00:00
|
|
|
* @see Walker::start_el()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2017-05-15 11:50:52 +00:00
|
|
|
* @param object $cat
|
2012-04-05 16:51:28 +00:00
|
|
|
* @param int $depth Depth of category in reference to parents.
|
2017-05-15 11:50:52 +00:00
|
|
|
* @param array $args
|
2013-08-05 11:27:21 +00:00
|
|
|
* @param integer $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 ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= '<li class="cat-item cat-item-' . $cat->term_id;
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-03-17 16:51:34 +00:00
|
|
|
if ( $args['current_category'] == $cat->term_id ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= ' current-cat';
|
2014-03-17 16:51:34 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2017-10-13 11:50:49 +00:00
|
|
|
if ( $args['has_children'] && $args['hierarchical'] && ( empty( $args['max_depth'] ) || $args['max_depth'] > $depth + 1 ) ) {
|
2013-06-28 09:07:18 +00:00
|
|
|
$output .= ' cat-parent';
|
2014-03-17 16:51:34 +00:00
|
|
|
}
|
2013-06-28 09:07:18 +00:00
|
|
|
|
2014-03-17 16:51:34 +00:00
|
|
|
if ( $args['current_category_ancestors'] && $args['current_category'] && in_array( $cat->term_id, $args['current_category_ancestors'] ) ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= ' current-cat-parent';
|
2014-03-17 16:51:34 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2016-08-27 06:14:06 +00:00
|
|
|
$output .= '"><a href="' . get_term_link( (int) $cat->term_id, $this->tree_type ) . '">' . _x( $cat->name, 'product category name', 'woocommerce' ) . '</a>';
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-03-17 16:51:34 +00:00
|
|
|
if ( $args['show_count'] ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= ' <span class="count">(' . $cat->count . ')</span>';
|
2014-03-17 16:51:34 +00:00
|
|
|
}
|
2012-04-05 16:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-06 19:02:05 +00:00
|
|
|
* Ends the element output, if needed.
|
|
|
|
*
|
2012-04-05 16:51:28 +00:00
|
|
|
* @see Walker::end_el()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2017-05-15 11:50:52 +00:00
|
|
|
* @param object $cat
|
2012-04-05 16:51:28 +00:00
|
|
|
* @param int $depth Depth of category. Not used.
|
|
|
|
* @param array $args Only uses 'list' for whether should append to output.
|
|
|
|
*/
|
2014-03-17 16:51:34 +00:00
|
|
|
public function end_el( &$output, $cat, $depth = 0, $args = array() ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
$output .= "</li>\n";
|
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2012-04-05 16:51:28 +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.
|
2012-04-05 16:51:28 +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
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
|
|
|
* @return null Null on failure with no changes to parameters.
|
|
|
|
*/
|
2014-03-17 16:51:34 +00:00
|
|
|
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'] ) ) ) {
|
2012-04-05 16:51:28 +00:00
|
|
|
return;
|
2014-02-17 21:00:25 +00:00
|
|
|
}
|
2014-03-17 16:51:34 +00:00
|
|
|
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
2012-04-05 16:51:28 +00:00
|
|
|
}
|
2014-09-20 19:35:47 +00:00
|
|
|
}
|
2014-12-16 11:45:02 +00:00
|
|
|
|
2015-11-03 13:31:20 +00:00
|
|
|
endif;
|