start_controls_section( 'eael_section_feature_list_content_settings', [ 'label' => esc_html__( 'Content Settings', 'essential-addons-for-elementor-lite' ), ] ); $repeater = new Repeater(); $repeater->add_control( 'eael_feature_list_icon_type', [ 'label' => esc_html__( 'Icon Type', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'icon' => [ 'title' => esc_html__( 'Icon', 'essential-addons-for-elementor-lite' ), 'icon' => 'fa fa-star', ], 'image' => [ 'title' => esc_html__( 'Image', 'essential-addons-for-elementor-lite' ), 'icon' => 'eicon-image-bold', ], ], 'default' => 'icon', 'label_block' => false, ] ); $repeater->add_control( 'eael_feature_list_icon_new', [ 'label' => esc_html__( 'Icon', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'eael_feature_list_icon', 'condition' => [ 'eael_feature_list_icon_type' => 'icon', ], ] ); // start icon color option $repeater->add_control( 'eael_feature_list_icon_is_individual_style', [ 'label' => esc_html__( 'Icon Style', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'ON', 'essential-addons-for-elementor-lite' ), 'label_off' => __( 'OFF', 'essential-addons-for-elementor-lite' ), 'return_value' => 'on', 'default' => '', 'fa4compatibility' => 'eael_feature_list_icon', 'condition' => [ 'eael_feature_list_icon_type' => 'icon', ], ] ); $repeater->add_control( 'eael_feature_list_icon_individual_color', [ 'label' => esc_html__( 'Icon Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#fff', 'selectors' => [ "{{WRAPPER}} {{CURRENT_ITEM}} .eael-feature-list-icon i" => 'color: {{VALUE}};', "{{WRAPPER}} {{CURRENT_ITEM}} .eael-feature-list-icon svg" => 'color: {{VALUE}} !important; fill: {{VALUE}} !important;', ], 'fa4compatibility' => 'eael_feature_list_icon', 'condition' => [ 'eael_feature_list_icon_is_individual_style' => 'on', ], ] ); $repeater->add_control( 'eael_feature_list_icon_individual_bg_color', [ 'label' => esc_html__( 'Icon Background', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ "{{WRAPPER}} {{CURRENT_ITEM}} .eael-feature-list-icon" => 'background-color: {{VALUE}}', ], 'fa4compatibility' => 'eael_feature_list_icon', 'condition' => [ 'eael_feature_list_icon_is_individual_style' => 'on', ], ] ); $repeater->add_control( 'eael_feature_list_icon_individual_box_bg_color', [ 'label' => esc_html__( 'Icon Box Background', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ "{{WRAPPER}} {{CURRENT_ITEM}} .eael-feature-list-icon-inner" => 'background-color: {{VALUE}}', ], 'fa4compatibility' => 'eael_feature_list_icon', 'condition' => [ 'eael_feature_list_icon_is_individual_style' => 'on', ], ] ); // end icon color option $repeater->add_control( 'eael_feature_list_img', [ 'label' => esc_html__( 'Image', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'eael_feature_list_icon_type' => 'image', ], ] ); $repeater->add_control( 'eael_feature_list_title', [ 'label' => esc_html__( 'Title', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__( 'Title', 'essential-addons-for-elementor-lite' ), 'dynamic' => ['active' => true], ] ); $repeater->add_control( 'eael_feature_list_content', [ 'label' => esc_html__( 'Content', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::TEXTAREA, 'default' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur.', 'essential-addons-for-elementor-lite' ), 'dynamic' => ['active' => true], ] ); $repeater->add_control( 'eael_feature_list_link', [ 'label' => esc_html__( 'Link', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::URL, 'dynamic' => ['active' => true], 'placeholder' => esc_html__( 'https://your-link.com', 'essential-addons-for-elementor-lite' ), 'separator' => 'before', ] ); $this->add_control( 'eael_feature_list', [ 'label' => esc_html__( 'Feature Item', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::REPEATER, 'seperator' => 'before', 'default' => [ [ 'eael_feature_list_icon_new' => [ 'value' => 'fas fa-check', 'library' => 'fa-solid', ], 'eael_feature_list_title' => esc_html__( 'Feature Item 1', 'essential-addons-for-elementor-lite' ), 'eael_feature_list_content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna', 'essential-addons-for-elementor-lite' ), ], [ 'eael_feature_list_icon_new' => [ 'value' => 'fas fa-times', 'library' => 'fa-solid', ], 'eael_feature_list_title' => esc_html__( 'Feature Item 2', 'essential-addons-for-elementor-lite' ), 'eael_feature_list_content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna', 'essential-addons-for-elementor-lite' ), ], [ 'eael_feature_list_icon_new' => [ 'value' => 'fas fa-anchor', 'library' => 'fa-solid', ], 'eael_feature_list_title' => esc_html__( 'Feature Item 3', 'essential-addons-for-elementor-lite' ), 'eael_feature_list_content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna', 'essential-addons-for-elementor-lite' ), ], ], 'fields' => $repeater->get_controls(), 'title_field' => '{{{ elementor.helpers.renderIcon( this, eael_feature_list_icon_new, {}, "i", "panel" ) || \'\' }}} {{ eael_feature_list_title }}', ] ); $this->add_control( 'eael_feature_list_title_size', [ 'label' => esc_html__( 'Title HTML Tag', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'h1' => 'H1', 'h2' => 'H2', 'h3' => 'H3', 'h4' => 'H4', 'h5' => 'H5', 'h6' => 'H6', 'div' => 'div', 'span' => 'span', 'p' => 'p', ], 'default' => 'h3', 'separator' => 'before', ] ); $this->add_control( 'eael_feature_list_icon_shape', [ 'label' => esc_html__( 'Icon Shape', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'circle', 'label_block' => false, 'options' => [ 'circle' => esc_html__( 'Circle', 'essential-addons-for-elementor-lite' ), 'square' => esc_html__( 'Square', 'essential-addons-for-elementor-lite' ), 'rhombus' => esc_html__( 'Rhombus', 'essential-addons-for-elementor-lite' ), ], ] ); $this->add_control( 'eael_feature_list_icon_shape_view', [ 'label' => esc_html__( 'Shape View', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'stacked', 'label_block' => false, 'options' => [ 'framed' => esc_html__( 'Framed', 'essential-addons-for-elementor-lite' ), 'stacked' => esc_html__( 'Stacked', 'essential-addons-for-elementor-lite' ), ], ] ); $this->add_responsive_control( 'eael_feature_list_icon_position', [ 'label' => esc_html__( 'Icon Position', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite' ), 'icon' => 'eicon-text-align-left', ], 'top' => [ 'title' => esc_html__( 'Top', 'essential-addons-for-elementor-lite' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite' ), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', 'devices' => ['desktop', 'tablet', 'mobile'], 'desktop_default' => 'left', 'tablet_default' => 'left', 'mobile_default' => 'left', 'toggle' => false, ] ); $this->add_responsive_control( 'eael_feature_list_icon_right_indicator_position', [ 'label' => __( 'Arrow Indicator Position', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px', '%'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 500, 'step' => 5, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 35, ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after' => 'top: {{SIZE}}{{UNIT}} !important;', ], 'condition' => [ 'eael_feature_list_icon_position' => 'top', ], ] ); $this->add_control( 'eael_feature_list_connector', [ 'label' => esc_html__( 'Show Connector', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Show', 'essential-addons-for-elementor-lite' ), 'label_off' => esc_html__( 'No', 'essential-addons-for-elementor-lite' ), 'return_value' => 'yes', ] ); $this->end_controls_section(); /** * ------------------------------------------- * Feature List Style * ------------------------------------------- */ $this->start_controls_section( 'eael_section_feature_list_style', [ 'label' => esc_html__( 'List', 'essential-addons-for-elementor-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'eael_feature_list_space_between', [ 'label' => esc_html__( 'Space Between', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 15, ], 'range' => [ 'px' => [ 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-items .eael-feature-list-item:not(:last-child)' => 'padding-bottom: calc({{SIZE}}{{UNIT}}/2)', '{{WRAPPER}} .eael-feature-list-items .eael-feature-list-item:not(:first-child)' => 'padding-top: calc({{SIZE}}{{UNIT}}/2)', '{{WRAPPER}} .eael-feature-list-items.connector-type-modern .eael-feature-list-item:not(:last-child):before' => 'height: calc(100% + {{SIZE}}{{UNIT}})', 'body.rtl {{WRAPPER}} .eael-feature-list-items .eael-feature-list-item:after' => 'left: calc(-{{SIZE}}{{UNIT}}/2)', ], ] ); $this->add_control( 'eael_feature_list_connector_type', [ 'label' => esc_html__( 'Connector Type', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'connector-type-classic', 'label_block' => false, 'options' => [ 'connector-type-classic' => esc_html__( 'Classic', 'essential-addons-for-elementor-lite' ), 'connector-type-modern' => esc_html__( 'Modern', 'essential-addons-for-elementor-lite' ), ], 'condition' => [ 'eael_feature_list_connector' => 'yes', 'eael_feature_list_icon_position!' => 'top', ], 'separator' => 'before', ] ); $this->add_control( 'eael_feature_list_connector_styles', [ 'label' => esc_html__( 'Connector Styles', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'solid', 'label_block' => false, 'options' => [ 'solid' => esc_html__( 'Solid', 'essential-addons-for-elementor-lite' ), 'dashed' => esc_html__( 'Dashed', 'essential-addons-for-elementor-lite' ), 'dotted' => esc_html__( 'Dotted', 'essential-addons-for-elementor-lite' ), ], 'condition' => [ 'eael_feature_list_connector' => 'yes', ], 'selectors' => [ '{{WRAPPER}} .connector-type-classic .connector' => 'border-style: {{VALUE}};', '{{WRAPPER}} .connector-type-modern .eael-feature-list-item:before, {{WRAPPER}} .connector-type-modern .eael-feature-list-item:after' => 'border-style: {{VALUE}};', ], ] ); $this->add_control( 'eael_feature_list_connector_color', [ 'label' => esc_html__( 'Connector Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'scheme' => [ 'type' => Color::get_type(), 'value' => Color::COLOR_1, ], 'default' => '#37368e', 'selectors' => [ '{{WRAPPER}} .connector-type-classic .connector' => 'border-color: {{VALUE}};', '{{WRAPPER}} .connector-type-modern .eael-feature-list-item:before, {{WRAPPER}} .connector-type-modern .eael-feature-list-item:after' => 'border-color: {{VALUE}};', ], 'condition' => [ 'eael_feature_list_connector' => 'yes', ], ] ); $this->add_control( 'eael_feature_list_connector_width', [ 'label' => esc_html__( 'Connector Width', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'unit' => 'px', 'size' => 1, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 5, ], ], 'selectors' => [ '{{WRAPPER}} .connector-type-classic .connector' => 'border-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before, {{WRAPPER}} .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after' => 'border-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .-icon-position-left .connector-type-modern .eael-feature-list-item:before, {{WRAPPER}} .-icon-position-left .connector-type-modern .eael-feature-list-item:after' => 'border-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .-icon-position-right .connector-type-modern .eael-feature-list-item:before, {{WRAPPER}} .-icon-position-right .connector-type-modern .eael-feature-list-item:after' => 'border-width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'eael_feature_list_connector' => 'yes', ], ] ); $this->end_controls_section(); /** * ------------------------------------------- * Feature List Icon Style * ------------------------------------------- */ $this->start_controls_section( 'eael_section_feature_list_style_icon', [ 'label' => esc_html__( 'Icon', 'essential-addons-for-elementor-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'eael_feature_list_icon_background', 'types' => ['classic', 'gradient'], 'exclude' => [ 'image', ], 'color' => [ 'default' => '#3858f4', ], 'selector' => '{{WRAPPER}} .eael-feature-list-items .eael-feature-list-icon-box .eael-feature-list-icon-inner', ] ); $this->add_control( 'eael_feature_list_secondary_color', [ 'label' => esc_html__( 'Secondary Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#ffffff', 'selectors' => [ '{{WRAPPER}} .eael-feature-list-items.framed .eael-feature-list-icon' => 'background-color: {{VALUE}};', ], 'condition' => [ 'eael_feature_list_icon_shape_view' => 'framed', ], 'separator' => 'before', ] ); $this->add_control( 'eael_feature_list_icon_color', [ 'label' => esc_html__( 'Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#fff', 'selectors' => [ '{{WRAPPER}} .eael-feature-list-items .eael-feature-list-icon' => 'color: {{VALUE}};', '{{WRAPPER}} .eael-feature-list-items .eael-feature-list-icon svg' => 'fill: {{VALUE}};', ], 'separator' => 'before', ] ); $this->add_responsive_control( 'eael_feature_list_icon_circle_size', [ 'label' => esc_html__( 'Size', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 70, ], 'range' => [ 'px' => [ 'min' => 6, 'max' => 300, ], ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon' => 'height: {{SIZE}}{{UNIT}}; width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .eael-feature-list-items.connector-type-classic .connector' => 'right: calc(100% - {{SIZE}}{{UNIT}});', ], ] ); $this->add_responsive_control( 'eael_feature_list_icon_size', [ 'label' => esc_html__( 'Icon Size', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 21, ], 'range' => [ 'px' => [ 'min' => 6, 'max' => 150, ], ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon img' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .eael-feature-list-img' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'eael_feature_list_icon_padding', [ 'label' => esc_html__( 'Padding', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%', 'em'], 'default' => [ 'top' => 15, 'right' => 15, 'bottom' => 15, 'left' => 15, 'isLinked' => true, ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'eael_feature_list_icon_border_width', [ 'label' => esc_html__( 'Border Width', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon-inner' => 'padding: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'eael_feature_list_icon_shape_view' => 'framed', ], ] ); $this->add_control( 'eael_feature_list_icon_border_radius', [ 'label' => esc_html__( 'Border Radius', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon-inner' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', '{{WRAPPER}} .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ 'eael_feature_list_icon_shape_view' => 'framed', ], ] ); $this->add_responsive_control( 'eael_feature_list_icon_space', [ 'label' => esc_html__( 'Spacing', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'devices' => ['desktop', 'tablet', 'mobile'], 'desktop_default' => [ 'size' => 30, 'unit' => 'px', ], 'tablet_default' => [ 'size' => 20, 'unit' => 'px', ], 'mobile_default' => [ 'size' => 10, 'unit' => 'px', ], 'selectors' => [ '{{WRAPPER}} .-icon-position-left .eael-feature-list-content-box, {{WRAPPER}} .-icon-position-right .eael-feature-list-content-box, {{WRAPPER}} .-icon-position-top .eael-feature-list-content-box' => 'margin: {{SIZE}}{{UNIT}};', '(mobile){{WRAPPER}} .-mobile-icon-position-left .eael-feature-list-content-box' => 'margin: 0 0 0 {{SIZE}}{{UNIT}} !important;', '(mobile){{WRAPPER}} .-mobile-icon-position-right .eael-feature-list-content-box' => 'margin: 0 {{SIZE}}{{UNIT}} 0 0 !important;', ], ] ); $this->end_controls_section(); /** * ------------------------------------------- * Feature List Content Style * ------------------------------------------- */ $this->start_controls_section( 'eael_section_feature_list_style_content', [ 'label' => esc_html__( 'Content', 'essential-addons-for-elementor-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'eael_feature_list_text_align', [ 'label' => __( 'Alignment', 'elementor' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'elementor' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __( 'Center', 'elementor' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __( 'Right', 'elementor' ), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => __( 'Justified', 'elementor' ), 'icon' => 'eicon-text-align-justify', ], ], 'condition' => [ 'eael_feature_list_icon_position' => 'top', ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-item' => 'text-align: {{VALUE}};', ], ] ); $this->add_control( 'eael_feature_list_heading_title', [ 'label' => esc_html__( 'Title', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::HEADING, ] ); $this->add_responsive_control( 'eael_feature_list_title_bottom_space', [ 'label' => esc_html__( 'Title Bottom Space', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 10, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .eael-feature-list-item .eael-feature-list-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'eael_feature_list_title_color', [ 'label' => esc_html__( 'Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#414247', 'selectors' => [ '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title > a, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title:visited' => 'color: {{VALUE}};', ], 'scheme' => [ 'type' => Color::get_type(), 'value' => Color::COLOR_1, ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'eael_feature_list_title_typography', 'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title a', 'scheme' => Typography::TYPOGRAPHY_1, ] ); $this->add_control( 'eael_feature_list_description', [ 'label' => esc_html__( 'Description', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'eael_feature_list_description_color', [ 'label' => esc_html__( 'Color', 'essential-addons-for-elementor-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content' => 'color: {{VALUE}};', ], 'scheme' => [ 'type' => Color::get_type(), 'value' => Color::COLOR_3, ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'eael_feature_list_description_typography', 'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content', 'scheme' => Typography::TYPOGRAPHY_3, 'fields_options' => [ 'font_size' => ['default' => ['unit' => 'px', 'size' => 14]], ], ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $css_id = 'eael-feature-list-' . esc_attr( $this->get_id() ); $this->add_render_attribute( 'eael_feature_list', [ 'id' => $css_id, 'class' => [ 'eael-feature-list-items', $settings['eael_feature_list_icon_shape'], $settings['eael_feature_list_icon_shape_view'], $settings['eael_feature_list_connector_type'], ], ] ); // connector class change by connector type if ( $settings['eael_feature_list_icon_position'] == 'top' && $settings['eael_feature_list_connector'] == 'yes' ) { $this->add_render_attribute( 'eael_feature_list', 'class', 'connector-type-modern' ); } $this->add_render_attribute( 'eael_feature_list_item', 'class', 'eael-feature-list-item' ); // $padding = $settings['eael_feature_list_icon_padding']['size']; $circle_size = intval( $settings['eael_feature_list_icon_circle_size']['size'] ); $font = $settings['eael_feature_list_icon_size']['size']; if ( isset( $settings['eael_feature_list_icon_border_width']['right'] ) && isset( $settings['eael_feature_list_icon_border_width']['left'] ) ) { $border = $settings['eael_feature_list_icon_border_width']['right'] + $settings['eael_feature_list_icon_border_width']['left']; } if ( !empty($settings['eael_feature_list_icon_shape']) && $settings['eael_feature_list_icon_shape'] == 'rhombus' ) { $margin = 30; $connector_width = intval( $circle_size + $margin + ( !empty( $settings['eael_feature_list_connector_width']['size'] ) ? $settings['eael_feature_list_connector_width']['size'] : 0 ) ); } else { $connector_width = intval( $circle_size + ( !empty( $settings['eael_feature_list_connector_width']['size'] ) ? $settings['eael_feature_list_connector_width']['size'] : 0 ) ); } // connector if ( !empty($settings['eael_feature_list_icon_position']) && $settings['eael_feature_list_icon_position'] == 'right' ) { $connector = 'left: calc(100% - ' . $connector_width . 'px); right: 0;'; } else { $connector = 'right: calc(100% - ' . $connector_width . 'px); left: 0;'; } // mobile if ( !empty($settings['eael_feature_list_icon_position_tablet']) && $settings['eael_feature_list_icon_position_tablet'] == 'right' ) { $connector_tablet = 'left: calc(100% - ' . $connector_width . 'px); right: 0;'; } else { $connector_tablet = 'right: calc(100% - ' . $connector_width . 'px); left: 0;'; } // mobile if ( !empty($settings['eael_feature_list_icon_position_mobile']) && $settings['eael_feature_list_icon_position_mobile'] == 'right' ) { $connector_mobile = 'left: calc(100% - ' . $connector_width . 'px); right: 0;'; } else { $connector_mobile = 'right: calc(100% - ' . $connector_width . 'px); left: 0;'; } // icon position for all mode $eael_feature_list_icon_position_setting = ( !empty($settings['eael_feature_list_icon_position']) && $settings['eael_feature_list_icon_position'] ) ? $settings['eael_feature_list_icon_position'] : 'left'; $eael_feature_list_icon_position_tablet_setting = ( !empty($settings['eael_feature_list_icon_position_tablet']) && $settings['eael_feature_list_icon_position_tablet'] ) ? $settings['eael_feature_list_icon_position_tablet'] : 'left'; $eael_feature_list_icon_position_mobile_setting = ( !empty($settings['eael_feature_list_icon_position_mobile']) && $settings['eael_feature_list_icon_position_mobile'] ) ? $settings['eael_feature_list_icon_position_mobile'] : 'left'; $this->add_render_attribute( 'eael_feature_list_wrapper', [ 'class' => [ '-icon-position-' . $eael_feature_list_icon_position_setting, '-tablet-icon-position-' . $eael_feature_list_icon_position_tablet_setting, '-mobile-icon-position-' . $eael_feature_list_icon_position_mobile_setting, ], ] ); ?>
get_render_attribute_string( 'eael_feature_list_content' . $index); ?>>