PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
bdthemes-element-pack-lite
/
modules
/
fancy-list
/
widgets
<?php namespace ElementPack\Modules\FancyList\Widgets; use Elementor\Widget_Base; use Elementor\Icons_Manager; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Repeater; use Elementor\Group_Control_Typography; use Elementor\Group_Control_Box_Shadow; if (!defined('ABSPATH')) exit; // Exit if accessed directly class Fancy_List extends Widget_Base { public function get_name() { return 'bdt-fancy-list'; } public function get_title() { return BDTEP . esc_html__('Fancy List', 'bdthemes-element-pack'); } public function get_icon() { return 'bdt-wi-fancy-list'; } public function get_categories() { return ['element-pack']; } public function get_style_depends() { return ['ep-fancy-list']; } public function get_keywords() { return ['fancy', 'list', 'group', 'fl']; } public function get_script_depends() { return ['bdt-uikit-icons']; } public function get_custom_help_url() { return 'https://youtu.be/faIeyW7LOJ8'; } protected function _register_controls() { $this->start_controls_section( 'section_layout', [ 'label' => esc_html__('Fancy List', 'bdthemes-dark-mode'), ] ); $this->add_control( 'show_number_icon', [ 'label' => __('Show Number Icon', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, ] ); $repeater = new Repeater(); $repeater->add_control( 'text', [ 'label' => __('Title', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'placeholder' => __('List Item', 'bdthemes-element-pack'), 'default' => __('List Item', 'bdthemes-element-pack'), 'dynamic' => [ 'active' => true, ], ] ); $repeater->add_control( 'text_details', [ 'label' => __('Sub Title', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'placeholder' => __('Sub Title', 'bdthemes-element-pack'), 'dynamic' => [ 'active' => true, ], ] ); $repeater->add_control( 'list_icon', [ 'label' => __('Icon', 'bdthemes-element-pack'), 'type' => Controls_Manager::ICONS, 'label_block' => true, ] ); $repeater->add_control( 'link', [ 'label' => __('Link', 'bdthemes-element-pack'), 'type' => Controls_Manager::URL, 'dynamic' => [ 'active' => true, ], 'label_block' => true, 'placeholder' => __('https://your-link.com', 'bdthemes-element-pack'), ] ); $repeater->add_control( 'img', [ 'label' => __('Image', 'bdthemes-element-pack'), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true, ], 'label_block' => true, ] ); $this->add_control( 'icon_list', [ 'label' => '', 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'separator' => 'before', 'default' => [ [ 'text' => __('List Item #1', 'bdthemes-element-pack'), ], [ 'text' => __('List Item #2', 'bdthemes-element-pack'), ], [ 'text' => __('List Item #3', 'bdthemes-element-pack'), ], ], 'title_field' => '{{{ elementor.helpers.renderIcon( this, list_icon, {}, "i", "panel" ) || \'<i class="{{ icon }}" aria-hidden="true"></i>\' }}} {{{ text }}}', ] ); $this->add_control( 'title_tags', [ 'label' => __( 'Title HTML Tag', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => 'h4', 'options' => [ 'h1' => 'H1', 'h2' => 'H2', 'h3' => 'H3', 'h4' => 'H4', 'h5' => 'H5', 'h6' => 'H6', 'div' => 'div', 'span' => 'span', 'p' => 'p', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_list_items', [ 'label' => __('List Item', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'list_item_bg_color', [ 'label' => __('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'default' => '#F5F5F5', 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .flex-wrap' => 'background-color: {{VALUE}} !important', ], ] ); $this->add_responsive_control( 'list_item_space_between', [ 'label' => __('Space Between', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => -10, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .bdt-list>li:nth-child(n+2),{{WRAPPER}} .bdt-fancy-list .bdt-list>li>ul' => 'margin-top: {{SIZE}}{{UNIT}}', ], ] ); $this->add_responsive_control( 'list_item_border', [ 'label' => __('Height', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 1, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .flex-wrap' => 'min-height: {{SIZE}}{{UNIT}}', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'list_item_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-fancy-list .custom-list-group li .flex-wrap', ] ); $this->add_responsive_control( 'list_item_padding', [ 'label' => __('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group li .flex-wrap' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} ', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'list_item_box_shadow', 'label' => __('Box Shadow', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-fancy-list .custom-list-group li .flex-wrap', ] ); $this->add_control( 'list_item_border_radiuss', [ 'label' => __('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group li .flex-wrap' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;', ], ] ); $this->add_responsive_control( 'list_item_align', [ 'label' => __('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-h-align-left', ], 'center' => [ 'title' => __('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-h-align-center', ], 'right' => [ 'title' => __('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-h-align-right', ], ], 'prefix_class' => 'elementor%s-align-', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_icon', [ 'label' => __('Number Icon', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'show_number_icon' => 'yes', ], ] ); $this->add_control( 'number_icon_color', [ 'label' => __('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .flex-wrap .number-icon-area span' => 'color: {{VALUE}} ', ], ] ); $this->add_control( 'icon_bg_color', [ 'label' => __('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .number-icon-area' => 'background-color: {{VALUE}}', ], ] ); $this->add_responsive_control( 'icon_number_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .number-icon-area' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'icon_number_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-fancy-list .number-icon-area', ] ); $this->add_control( 'icon_number_border_radius', [ 'label' => __('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .number-icon-area' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} ', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_text_style', [ 'label' => __('Title / Subtitle', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->start_controls_tabs('tabs_mode_style'); $this->start_controls_tab( 'tab_normal_mode_normal', [ 'label' => __('Normal', 'bdthemes-element-pack'), ] ); $this->add_control( 'title_heading', [ 'label' => __('Title', 'bdthemes-element-pack'), 'type' => Controls_Manager::HEADING, ] ); $this->add_control( 'title_color', [ 'label' => __('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .list-text .bdt-list-title ' => 'color: {{VALUE}} ', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'selector' => '{{WRAPPER}} .bdt-fancy-list .list-text .bdt-list-title', ] ); $this->add_control( 'sub_title_heading', [ 'label' => __('Sub Title', 'bdthemes-element-pack'), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'des_text_color', [ 'label' => __('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .list-text-des' => 'color: {{VALUE}} ', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'sub_title_typography', 'selector' => '{{WRAPPER}} .bdt-fancy-list .list-text-des', ] ); // $this->add_control( // 'text_indent', // [ // 'label' => __('Text Indent', 'bdthemes-element-pack'), // 'type' => Controls_Manager::SLIDER, // 'range' => [ // 'px' => [ // 'max' => 50, // ], // ], // 'selectors' => [ // '{{WRAPPER}} .bdt-fancy-list .list-text .bdt-list-title,{{WRAPPER}} .bdt-fancy-list .list-text-des ' => is_rtl() ? 'padding-right: {{SIZE}}{{UNIT}};' : 'padding-left: {{SIZE}}{{UNIT}};', // ], // 'separator' => 'before', // ] // ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_hover_mode_normal', [ 'label' => __('Hover', 'bdthemes-element-pack'), ] ); $this->add_control( 'title_color_hover', [ 'label' => __('Title Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-text .bdt-list-title' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'text_color_hover', [ 'label' => __('Sub Title Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-text-des' => 'color: {{VALUE}}', ], 'separator' => 'before', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_icon_style', [ 'label' => __('Icon', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->start_controls_tabs('tabs_mode_style1'); $this->start_controls_tab( 'tab_normal_mode_normal1', [ 'label' => __('Normal', 'bdthemes-element-pack'), ] ); $this->add_control( 'icon_color', [ 'label' => __('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'default' => '#242424', 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .list-icon i' => 'color: {{VALUE}} !important;', '{{WRAPPER}} .bdt-fancy-list .list-icon svg *' => 'fill: {{VALUE}} ; stroke: {{VALUE}} ;' ], ] ); $this->add_control( 'right_icon_bg_color', [ 'label' => __('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'default' => '#fff', 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .list-icon ' => 'background: {{VALUE}} ;' ], ] ); $this->add_responsive_control( 'icon_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group .list-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'icon_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-fancy-list .custom-list-group .list-icon', ] ); $this->add_control( 'icon_border_radius', [ 'label' => __('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .list-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} ;', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'icon_typography', 'selector' => '{{WRAPPER}} .bdt-fancy-list .custom-list-group .list-icon', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_hover_mode_normal1', [ 'label' => __('Hover', 'bdthemes-element-pack'), ] ); $this->add_control( 'icon_color_hover', [ 'label' => __('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-icon i' => 'color: {{VALUE}} !important;', '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-icon svg *' => 'fill: {{VALUE}} !important; stroke: {{VALUE}} ; ' ], ] ); $this->add_control( 'icon_bg_color_hover', [ 'label' => __('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-icon' => 'background-color: {{VALUE}} ;', ], ] ); $this->add_control( 'icon_border_color_hover', [ 'label' => __('Border Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'condition' => [ 'icon_border_border!' => '', ], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .custom-list-group a:hover .list-icon' => 'border-color: {{VALUE}} ;', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_image_style', [ 'label' => __('Image', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'image_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-fancy-list .image-area img', ] ); $this->add_control( 'border_radius', [ 'label' => __('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-fancy-list .image-area img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} ;', ], ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $this->add_render_attribute('icon_list', 'class', 'list-icon'); $this->add_render_attribute('list_item', 'class', 'elementor-icon-list-item'); ?> <div class="bdt-fancy-list"> <ul class="bdt-list custom-list-group" <?php echo $this->get_render_attribute_string('icon_list'); ?>> <?php $i = 1; foreach ($settings['icon_list'] as $index => $item) : $repeater_setting_key = $this->get_repeater_setting_key('text', 'icon_list', $index); $this->add_render_attribute($repeater_setting_key, 'class', 'elementor-icon-list-text'); $this->add_inline_editing_attributes($repeater_setting_key); $migration_allowed = Icons_Manager::is_migration_allowed(); $this->add_render_attribute('list_title_tags', 'class', 'bdt-list-title', true); ?> <li> <?php if (!empty($item['link']['url'])) { $link_key = 'link_' . $index; $this->add_render_attribute($link_key, 'href', $item['link']['url']); if ($item['link']['is_external']) { $this->add_render_attribute($link_key, 'target', '_blank'); } if ($item['link']['nofollow']) { $this->add_render_attribute($link_key, 'rel', 'nofollow'); } echo '<a ' . $this->get_render_attribute_string($link_key) . '>'; } else { echo '<a href="#">'; } ?> <div class="bdt-flex flex-wrap"> <?php if ($settings['show_number_icon'] == 'yes') { echo '<div class="number-icon-area"><span>'; ?> <?php echo $i++; ?> <?php echo '</span></div>'; } ?> <?php if (!empty($item['img']['url'])) { echo '<div class=" image-area"> <img src=" ' . $item['img']['url'] . '"> </div>'; } ?> <div class="list-text "> <<?php echo esc_html($settings['title_tags']); ?> <?php echo $this->get_render_attribute_string('list_title_tags'); ?>> <?php echo $item['text']; ?> </<?php echo esc_html($settings['title_tags']); ?>> <p class="list-text-des"> <?php echo $item['text_details']; ?></p> </div> <?php if (!empty($item['list_icon']['value'])) : ?> <div class="list-icon"> <?php Icons_Manager::render_icon($item['list_icon'], ['aria-hidden' => 'true']); ?> </div> <?php endif; ?> </div> <?php if (!empty($item['link']['url'])) : ?> </a> <?php else : ?> </a> <?php endif; ?> </li> <?php endforeach; ?> </ul> </div> <?php } }
[+]
..
[-] fancy-list.php
[edit]