woocommerce/classes/walkers/class-product-cat-dropdown-...

49 lines
1.4 KiB
PHP
Raw Normal View History

2012-04-05 16:51:28 +00:00
<?php
/**
* WC_Product_Cat_Dropdown_Walker class.
2012-08-14 22:43:48 +00:00
*
* @extends Walker
* @class WC_Product_Cat_Dropdown_Walker
* @version 1.6.4
* @package WooCommerce/Classes/Walkers
* @author WooThemes
2012-04-05 16:51:28 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2012-04-05 16:51:28 +00:00
class WC_Product_Cat_Dropdown_Walker extends Walker {
var $tree_type = 'category';
var $db_fields = array ('parent' => 'parent', 'id' => 'term_id', 'slug' => 'slug' );
/**
* @see Walker::start_el()
* @since 2.1.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $category Category data object.
* @param int $depth Depth of category in reference to parents.
* @param array $args
*/
function start_el(&$output, $cat, $depth, $args) {
$pad = str_repeat('&nbsp;', $depth * 3);
$cat_name = apply_filters( 'list_product_cats', $cat->name, $cat );
2012-08-14 22:43:48 +00:00
2012-12-05 18:36:30 +00:00
$value = isset( $args['value'] ) && $args['value'] == 'id' ? $cat->term_id : $cat->slug;
$output .= "\t<option class=\"level-$depth\" value=\"" . $value . "\"";
if ( $value == $args['selected'] || ( is_array( $args['selected'] ) && in_array( $value, $args['selected'] ) ) )
2012-04-05 16:51:28 +00:00
$output .= ' selected="selected"';
2012-08-14 22:43:48 +00:00
2012-04-05 16:51:28 +00:00
$output .= '>';
2012-08-14 22:43:48 +00:00
2012-07-18 08:38:00 +00:00
$output .= $pad . __( $cat_name, 'woocommerce' );
2012-08-14 22:43:48 +00:00
2012-12-05 18:36:30 +00:00
if ( ! empty( $args['show_count'] ) )
2012-04-05 16:51:28 +00:00
$output .= '&nbsp;(' . $cat->count . ')';
2012-08-14 22:43:48 +00:00
2012-04-05 16:51:28 +00:00
$output .= "</option>\n";
}
}