| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.4/wp-content/themes/woodmart/inc/modules/header-builder/elements/ |
Upload File : |
<?php
/**
* Compare element class file.
*
* @package woodmart
*/
namespace XTS\Modules\Header_Builder\Elements;
use XTS\Modules\Header_Builder\Element;
/**
* Compare icon in the header elements.
*/
class Compare extends Element {
/**
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->template_name = 'compare';
}
/**
* Map element.
*
* @return void
*/
public function map() {
$this->args = array(
'type' => 'compare',
'title' => esc_html__( 'Compare', 'woodmart' ),
'text' => esc_html__( 'Compare icon', 'woodmart' ),
'icon' => 'xts-i-compare',
'editable' => true,
'container' => false,
'edit_on_create' => true,
'drag_target_for' => array(),
'drag_source' => 'content_element',
'removable' => true,
'addable' => true,
'params' => array(
'design' => array(
'id' => 'design',
'title' => esc_html__( 'Display', 'woodmart' ),
'type' => 'selector',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => 'icon',
'options' => array(
'text-only' => array(
'value' => 'text-only',
'label' => esc_html__( 'Text', 'woodmart' ),
),
'icon' => array(
'value' => 'icon',
'label' => esc_html__( 'Icon', 'woodmart' ),
),
'text' => array(
'value' => 'text',
'label' => esc_html__( 'Icon with text', 'woodmart' ),
),
),
'description' => esc_html__( 'Select whether to display only the icon, only the text, or both together.', 'woodmart' ),
),
'icon_design' => array(
'id' => 'icon_design',
'title' => esc_html__( 'Design', 'woodmart' ),
'type' => 'selector',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => '2',
'options' => array(
'1' => array(
'value' => '1',
'label' => esc_html__( 'First', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/first.jpg',
),
'2' => array(
'value' => '2',
'label' => esc_html__( 'Second', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/second.jpg',
),
'4' => array(
'value' => '4',
'label' => esc_html__( 'Third', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/third.jpg',
),
'6' => array(
'value' => '6',
'label' => esc_html__( 'Fourth', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/fourth.jpg',
),
'7' => array(
'value' => '7',
'label' => esc_html__( 'Fifth', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/fifth.jpg',
),
'8' => array(
'value' => '8',
'label' => esc_html__( 'Sixth', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/sixth.jpg',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
),
),
'text_design' => array(
'id' => 'text_design',
'title' => esc_html__( 'Design', 'woodmart' ),
'type' => 'selector',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => '4',
'options' => array(
'1' => array(
'value' => '1',
'label' => esc_html__( 'First', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/text-first.jpg',
),
'4' => array(
'value' => '4',
'label' => esc_html__( 'Second', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/text-second.jpg',
),
'6' => array(
'value' => '6',
'label' => esc_html__( 'Third', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/text-third.jpg',
),
'7' => array(
'value' => '7',
'label' => esc_html__( 'Fourth', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/text-fourth.jpg',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => array( 'text-only' ),
),
),
),
'text_color' => array(
'id' => 'text_color',
'title' => esc_html__( 'Color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element .wd-tools-inner' => array(
'color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => array( 'text-only' ),
),
'text_design' => array(
'comparison' => 'equal',
'value' => array( '7' ),
),
),
'extra_class' => 'xts-col-6',
),
'text_hover_color' => array(
'id' => 'text_hover_color',
'title' => esc_html__( 'Hover color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element:hover .wd-tools-inner' => array(
'color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => array( 'text-only' ),
),
'text_design' => array(
'comparison' => 'equal',
'value' => array( '7' ),
),
),
'extra_class' => 'xts-col-6',
),
'text_bg_color' => array(
'id' => 'text_bg_color',
'title' => esc_html__( 'Background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element .wd-tools-inner' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => array( 'text-only' ),
),
'text_design' => array(
'comparison' => 'equal',
'value' => array( '7' ),
),
),
'extra_class' => 'xts-col-6',
),
'text_bg_hover_color' => array(
'id' => 'text_bg_hover_color',
'title' => esc_html__( 'Hover background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element:hover .wd-tools-inner' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => array( 'text-only' ),
),
'text_design' => array(
'comparison' => 'equal',
'value' => array( '7' ),
),
),
'extra_class' => 'xts-col-6',
),
'wrap_type' => array(
'id' => 'wrap_type',
'title' => esc_html__( 'Background wrap type', 'woodmart' ),
'type' => 'selector',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => 'icon_only',
'options' => array(
'icon_only' => array(
'value' => 'icon_only',
'label' => esc_html__( 'Icon only', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/bg-wrap-type/compare-wrap-icon.jpg',
),
'icon_and_text' => array(
'value' => 'icon_and_text',
'label' => esc_html__( 'Icon and text', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/bg-wrap-type/compare-wrap-icon-and-text.jpg',
),
),
'condition' => array(
'design' => array(
'comparison' => 'equal',
'value' => 'text',
),
'icon_design' => array(
'comparison' => 'equal',
'value' => array( '6', '7' ),
),
),
),
'color' => array(
'id' => 'color',
'title' => esc_html__( 'Color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element .wd-tools-inner, .whb-row .{{WRAPPER}}.wd-tools-element > a > .wd-tools-icon' => array(
'color: {{VALUE}};',
),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'field' => 'design',
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
array(
'field' => 'icon_design',
'comparison' => 'equal',
'value' => array( '7' ),
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'field' => 'design',
'comparison' => 'equal',
'value' => array( 'text' ),
),
array(
'field' => 'icon_design',
'comparison' => 'equal',
'value' => array( '8' ),
),
),
),
),
),
'extra_class' => 'xts-col-6',
),
'hover_color' => array(
'id' => 'hover_color',
'title' => esc_html__( 'Hover color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element:hover .wd-tools-inner, .whb-row .{{WRAPPER}}.wd-tools-element:hover > a > .wd-tools-icon' => array(
'color: {{VALUE}};',
),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'field' => 'design',
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
array(
'field' => 'icon_design',
'comparison' => 'equal',
'value' => array( '7' ),
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'field' => 'design',
'comparison' => 'equal',
'value' => array( 'text' ),
),
array(
'field' => 'icon_design',
'comparison' => 'equal',
'value' => array( '8' ),
),
),
),
),
),
'extra_class' => 'xts-col-6',
),
'bg_color' => array(
'id' => 'bg_color',
'title' => esc_html__( 'Background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element .wd-tools-inner, .whb-row .{{WRAPPER}}.wd-tools-element > a > .wd-tools-icon' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => array( '7', '8' ),
),
),
'extra_class' => 'xts-col-6',
),
'bg_hover_color' => array(
'id' => 'bg_hover_color',
'title' => esc_html__( 'Hover background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'whb-row .{{WRAPPER}}.wd-tools-element:hover .wd-tools-inner, .whb-row .{{WRAPPER}}.wd-tools-element:hover > a > .wd-tools-icon' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => array( '7', '8' ),
),
),
'extra_class' => 'xts-col-6',
),
'icon_color' => array(
'id' => 'icon_color',
'title' => esc_html__( 'Icon color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'{{WRAPPER}}.wd-tools-element.wd-design-8 .wd-tools-icon' => array(
'color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => '8',
),
),
'extra_class' => 'xts-col-6',
),
'icon_hover_color' => array(
'id' => 'icon_hover_color',
'title' => esc_html__( 'Hover icon color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'{{WRAPPER}}.wd-tools-element.wd-design-8:hover .wd-tools-icon' => array(
'color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => '8',
),
),
'extra_class' => 'xts-col-6',
),
'icon_bg_color' => array(
'id' => 'icon_bg_color',
'title' => esc_html__( 'Icon background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'{{WRAPPER}}.wd-tools-element.wd-design-8 .wd-tools-icon' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => '8',
),
),
'extra_class' => 'xts-col-6',
),
'icon_bg_hover_color' => array(
'id' => 'icon_bg_hover_color',
'title' => esc_html__( 'Hover icon background color', 'woodmart' ),
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'type' => 'color',
'value' => '',
'selectors' => array(
'{{WRAPPER}}.wd-tools-element.wd-design-8:hover .wd-tools-icon' => array(
'background-color: {{VALUE}};',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_design' => array(
'comparison' => 'equal',
'value' => '8',
),
),
'extra_class' => 'xts-col-6',
),
'icon_type' => array(
'id' => 'icon_type',
'title' => esc_html__( 'Icon type', 'woodmart' ),
'type' => 'selector',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => 'default',
'options' => array(
'default' => array(
'value' => 'default',
'label' => esc_html__( 'Default', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/compare-icons/second.jpg',
),
'custom' => array(
'value' => 'custom',
'label' => esc_html__( 'Custom', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/header-builder/upload.jpg',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
),
),
'custom_icon' => array(
'id' => 'custom_icon',
'title' => esc_html__( 'Upload an image', 'woodmart' ),
'type' => 'image',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'value' => '',
'description' => '',
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_type' => array(
'comparison' => 'equal',
'value' => 'custom',
),
),
'extra_class' => 'xts-col-6',
),
'custom_icon_width' => array(
'id' => 'custom_icon_width',
'title' => esc_html__( 'Icon width', 'woodmart' ),
'type' => 'slider',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Button', 'woodmart' ),
'from' => 0,
'to' => 60,
'value' => 0,
'units' => 'px',
'selectors' => array(
'{{WRAPPER}}' => array(
'--wd-tools-icon-width: {{VALUE}}px;',
),
),
'condition' => array(
'design' => array(
'comparison' => 'not_equal',
'value' => array( 'text-only' ),
),
'icon_type' => array(
'comparison' => 'equal',
'value' => 'custom',
),
),
'extra_class' => 'xts-col-6',
),
'hide_product_count' => array(
'id' => 'hide_product_count',
'title' => esc_html__( 'Hide product count label', 'woodmart' ),
'hint' => '<video src="' . WOODMART_TOOLTIP_URL . 'hb_compare_hide_product_count.mp4" autoplay loop muted></video>',
'type' => 'switcher',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Extra', 'woodmart' ),
'value' => false,
'description' => esc_html__( 'Mark this option if you want to hide product count label.', 'woodmart' ),
),
'show_dropdown_category' => array(
'id' => 'show_dropdown_category',
'title' => esc_html__( 'Show dropdown with category', 'woodmart' ),
'hint' => '<video src="' . WOODMART_TOOLTIP_URL . 'hb_compare_show_dropdown_category.mp4" autoplay loop muted></video>',
'type' => 'switcher',
'tab' => esc_html__( 'Style', 'woodmart' ),
'group' => esc_html__( 'Extra', 'woodmart' ),
'description' => esc_html__( 'Following option work only if "Compare by category" is enabled in theme settings.', 'woodmart' ),
'value' => false,
),
),
);
}
}