woocommerce/includes/walkers/class-product-cat-list-walk...

154 lines
4.3 KiB
PHP
Raw Normal View History

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
* @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
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
2017-02-16 11:46:01 +00:00
if ( ! class_exists( 'WC_Product_Cat_List_Walker', false ) ) :
2012-04-05 16:51:28 +00:00
class WC_Product_Cat_List_Walker extends Walker {
/**
* What the class handles.
*
* @var string
*/
public $tree_type = 'product_cat';
2012-04-05 16:51:28 +00:00
/**
* DB fields to use.
*
* @var array
*/
public $db_fields = array(
'parent' => 'parent',
'id' => 'term_id',
'slug' => 'slug',
);
/**
* 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() ) {
if ( 'list' != $args['style'] ) {
2012-04-05 16:51:28 +00:00
return;
}
2012-04-05 16:51:28 +00:00
$indent = str_repeat( "\t", $depth );
2012-04-05 16:51:28 +00:00
$output .= "$indent<ul class='children'>\n";
}
/**
* 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() ) {
if ( 'list' != $args['style'] ) {
2012-04-05 16:51:28 +00:00
return;
}
2012-04-05 16:51:28 +00:00
$indent = str_repeat( "\t", $depth );
2012-04-05 16:51:28 +00:00
$output .= "$indent</ul>\n";
}
/**
* 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.
* @param object $cat
2012-04-05 16:51:28 +00:00
* @param int $depth Depth of category in reference to parents.
* @param array $args
* @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
2014-03-17 16:51:34 +00:00
if ( $args['has_children'] && $args['hierarchical'] ) {
$output .= ' cat-parent';
2014-03-17 16:51:34 +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
$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
}
/**
* 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.
* @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 ) {
if ( ! $element || ( 0 === $element->count && ! empty( $args[0]['hide_empty'] ) ) ) {
2012-04-05 16:51:28 +00:00
return;
}
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
}
}
2015-11-03 13:31:20 +00:00
endif;