Files
elessi-theme/widgets/wg-nasa-product-brands.php

358 lines
14 KiB
PHP

<?php
defined('ABSPATH') or die(); // Exit if accessed directly
if (NASA_WOO_ACTIVED && class_exists('YITH_WCBR')) {
add_action('widgets_init', 'elessi_product_brands_widget');
function elessi_product_brands_widget() {
register_widget('Elessi_Product_Brands_Widget');
}
class Elessi_Product_Brands_Widget extends WC_Widget {
const TAX_NAME = 'yith_product_brand';
/**
* Category ancestors
*
* @var array
*/
public $brand_ancestors;
/**
* Current Category
*
* @var bool
*/
public $current_brand;
/**
* Constructor
*/
public function __construct() {
$this->widget_cssclass = 'woocommerce widget_product_brands';
$this->widget_description = __('Display yith product brands with Accordion.', 'elessi-theme');
$this->widget_id = 'nasa_product_brands';
$this->widget_name = 'Nasa - Yith Product Brands';
$this->settings = array(
'title' => array(
'type' => 'text',
'std' => __('Product Brands', 'elessi-theme'),
'label' => __('Title', 'elessi-theme')
),
'count' => array(
'type' => 'checkbox',
'std' => 0,
'label' => __('Show product counts', 'elessi-theme')
),
'accordion' => array(
'type' => 'checkbox',
'std' => 1,
'label' => __('Show as Accordion', 'elessi-theme')
),
'show_items' => array(
'type' => 'text',
'std' => 'All',
'label' => __('Show default numbers items', 'elessi-theme')
)
);
parent::__construct();
}
/**
* Updates a particular instance of a widget.
*
* @see WP_Widget->update
*
* @param array $new_instance
* @param array $old_instance
*
* @return array
*/
public function update($new_instance, $old_instance) {
$this->nasa_settings($new_instance);
return parent::update($new_instance, $old_instance);
}
/**
* form function.
*
* @see WP_Widget->form
* @param array $instance
*/
public function form($instance) {
$this->nasa_settings($instance);
if (empty($this->settings)) {
return;
}
foreach ($this->settings as $key => $setting) {
$value = isset($instance[$key]) ? $instance[$key] : $setting['std'];
$_id = $this->get_field_id($key);
$_name = $this->get_field_name($key);
switch ($setting['type']) {
case 'text' :
?>
<p>
<label for="<?php echo esc_attr($_id); ?>"><?php echo ($setting['label']); ?></label>
<input class="widefat" id="<?php echo esc_attr($_id); ?>" name="<?php echo esc_attr($_name); ?>" type="text" value="<?php echo esc_attr($value); ?>" />
</p>
<?php
break;
case 'number' :
?>
<p>
<label for="<?php echo esc_attr($_id); ?>"><?php echo ($setting['label']); ?></label>
<input class="widefat" id="<?php echo esc_attr($_id); ?>" name="<?php echo esc_attr($_name); ?>" type="number" step="<?php echo esc_attr($setting['step']); ?>" min="<?php echo esc_attr($setting['min']); ?>" max="<?php echo esc_attr($setting['max']); ?>" value="<?php echo esc_attr($value); ?>" />
</p>
<?php
break;
case 'select' :
?>
<p>
<label for="<?php echo esc_attr($_id); ?>"><?php echo ($setting['label']); ?></label>
<select class="widefat" id="<?php echo esc_attr($_id); ?>" name="<?php echo esc_attr($_name); ?>">
<?php foreach ($setting['options'] as $o_key => $o_value): ?>
<option value="<?php echo esc_attr($o_key); ?>" <?php selected($o_key, $value); ?>><?php echo esc_html($o_value); ?></option>
<?php endforeach; ?>
</select>
</p>
<?php
break;
case 'checkbox' :
?>
<p>
<input id="<?php echo esc_attr($_id); ?>" name="<?php echo esc_attr($_name); ?>" type="checkbox" value="1" <?php checked($value, 1); ?> />
<label for="<?php echo esc_attr($_id); ?>"><?php echo ($setting['label']); ?></label>
</p>
<?php
break;
// Button chosen icon font
case 'icons':
echo ($this->getTemplateAdminIcon($_name, $_id, $setting['label'], $value));
break;
}
}
}
public function getTemplateAdminIcon($_name, $_id, $label, $value) {
$content = '<p>';
$content .= '<a class="nasa-chosen-icon" data-fill="' . esc_attr($_id) . '">' . esc_html__('Click select icon for ', 'elessi-theme') . '</a>';
$content .= '<span id="ico-' . esc_attr($_id) . '">';
if ($value):
$content .= '<i class="' . esc_attr($value) . '"></i>';
$content .= '<a href="javascript:void(0);" class="nasa-remove-icon" data-id="' . esc_attr($_id) . '" rel="nofollow">';
$content .= '<i class="fa fa-remove"></i>';
$content .= '</a>';
endif;
$content .= '</span>';
$content .= '<label for="' . $_id . '">' . $label . '</label><br />';
$content .= '<input class="widefat" id="' . esc_attr($_id) . '" name="' . $_name . '" type="hidden" readonly="true" value="' . esc_attr($value) . '" />';
$content .= '</p>';
return $content;
}
/**
* Init settings after post types are registered.
*/
public function nasa_settings($instance) {
// Default setting color
if (empty($instance)) {
if ($default = get_option('widget_' . $this->widget_id, true)) {
foreach ($default as $v) {
$instance = $v;
break;
}
}
}
$top_level = get_terms(apply_filters('woocommerce_product_attribute_terms', array(
'taxonomy' => self::TAX_NAME,
'hierarchical' => true,
'hide_empty' => false
)));
if ($top_level) {
foreach ($top_level as $v) {
// Change settings
$this->settings['brand_' . $v->slug] = array(
'type' => 'icons',
'std' => isset($instance['brand_' . $v->slug]) ? $instance['brand_' . $v->slug] : '',
'label' => '<b>' . $v->name . '</b>'
);
}
}
}
/**
* widget function.
*
* @see WP_Widget
*
* @param array $args
* @param array $instance
*
* @return void
*/
public function widget($args, $instance) {
global $wp_query, $post;
$show_items = isset($instance['show_items']) ? (int) $instance['show_items'] : 0;
$a = isset($instance['accordion']) ? $instance['accordion'] : $this->settings['accordion']['std'];
$c = isset($instance['count']) ? $instance['count'] : $this->settings['count']['std'];
$h = isset($instance['hierarchical']) ? $instance['hierarchical'] : 1;
$o = isset($instance['orderby']) ? $instance['orderby'] : 'name';
$list_args = array('show_count' => $c, 'hierarchical' => $h, 'taxonomy' => self::TAX_NAME, 'hide_empty' => false);
// Menu Order
$list_args['menu_order'] = false;
if ($o == 'order') {
$list_args['menu_order'] = 'asc';
} else {
$list_args['orderby'] = 'title';
}
// Setup Current Category
$this->current_brand = false;
$this->brand_ancestors = array();
if (is_tax(self::TAX_NAME)) {
$this->current_brand = $wp_query->queried_object;
$this->brand_ancestors = get_ancestors($this->current_brand->term_id, self::TAX_NAME);
} elseif (is_singular('product')) {
$product_brand = wc_get_product_terms($post->ID, self::TAX_NAME, array('orderby' => 'parent'));
if ($product_brand) {
$this->current_brand = end($product_brand);
$this->brand_ancestors = get_ancestors($this->current_brand->term_id, self::TAX_NAME);
}
}
$this->widget_start($args, $instance);
$menu_cat = new Elessi_Product_Brand_List_Walker();
$menu_cat->setIcons($instance);
$menu_cat->setShowDefault($show_items);
$list_args['walker'] = $menu_cat;
$list_args['title_li'] = '';
$list_args['pad_counts'] = 1;
$list_args['show_option_none'] = esc_html__('No product categories exist.', 'elessi-theme');
$list_args['current_brand'] = $this->current_brand ? $this->current_brand->term_id : '';
$list_args['current_brand_ancestors'] = $this->brand_ancestors;
$accordion = $a ? ' nasa-accordion' : ' ns-ctree';
echo '<ul class="nasa-root-cat nasa-root-tax product-categories' . $accordion . '">';
wp_list_categories(apply_filters('woocommerce_yith_product_brands_widget_args', $list_args));
if ($show_items && ($menu_cat->getTotalRoot() > $show_items)) {
echo '<li class="nasa_show_manual"><a data-show="1" class="nasa-show" href="javascript:void(0);" data-text="' . esc_attr__('- Show less', 'elessi-theme') . '" rel="nofollow">' . esc_html__('+ Show more', 'elessi-theme') . '</a></li>';
}
echo '</ul>';
$this->widget_end($args);
}
}
if (!class_exists('WC_Product_Cat_List_Walker')) {
require_once WC()->plugin_path() . '/includes/walkers/class-product-cat-list-walker.php';
}
class Elessi_Product_Brand_List_Walker extends WC_Product_Cat_List_Walker {
protected $_icons = array();
protected $_k = 0;
protected $_show_default = 0;
protected $_filter_type = 'only';
protected $_class_ajax = 'nasa-filter-by-tax';
public function __construct() {
$this->tree_type = Elessi_Product_Brands_Widget::TAX_NAME;
}
public function setIcons($instance) {
$this->_icons = $instance;
}
public function setFilterType($type = 'only') {
$this->_filter_type = $type == 'or' ? 'or' : 'only';
$this->_class_ajax = $this->_filter_type == 'only' ? 'nasa-filter-by-cat' : 'nasa-filter-by-brand';
}
public function setShowDefault($show) {
$this->_show_default = (int) $show;
}
public function getTotalRoot() {
return $this->_k;
}
/**
* @see Walker::start_el()
* @since 2.1.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param int $depth Depth of category in reference to parents.
* @param integer $current_object_id
*/
public function start_el(&$output, $brand, $depth = 0, $args = array(), $current_object_id = 0) {
$output .= '<li class="cat-item cat-item-' . $brand->term_id . ' cat-item-' . $brand->slug;
$nasa_active = $accordion = $icon = '';
if ($depth == 0) {
$output .= ' root-item';
if ($this->_show_default && ($this->_k >= $this->_show_default)) {
$output .= ' nasa-show-less';
}
$this->_k++;
}
if (isset($this->_icons['brand_' . $brand->slug]) && trim($this->_icons['brand_' . $brand->slug]) != '') {
$icon = '<i class="nasa-icon nasa-brand-icon ' . $this->_icons['brand_' . $brand->slug] . '"></i>&nbsp;&nbsp;';
}
if ($args['current_brand'] == $brand->term_id) {
$output .= ' current-cat active';
$nasa_active = ' nasa-active';
}
if ($args['has_children'] && $args['hierarchical']) {
$output .= ' cat-parent li_accordion';
$accordion = '<a href="javascript:void(0);" class="accordion" rel="nofollow"></a>';
}
if ($args['current_brand_ancestors'] && $args['current_brand'] && in_array($brand->term_id, $args['current_brand_ancestors'])) {
$output .= ' current-cat-parent active';
}
$output .= '">' . $accordion;
$href = get_term_link($brand, $this->tree_type);
$output .= '<a ' .
'href="' . esc_url($href) . '" ' .
'title="' . esc_attr($brand->name) . '" ' .
'data-id="' . esc_attr((int) $brand->term_id) . '" ' .
'data-slug="' . esc_attr($brand->slug) . '" ' .
'class="nasa-filter-item ' . $this->_class_ajax . $nasa_active . '" ' .
'data-taxonomy="' . $this->tree_type . '">' .
$icon . $brand->name;
$output .= $args['show_count'] ? ' <span class="count">' . $brand->count . '</span>' : '';
$output .= '</a>';
}
}
}