Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
editor
/
widgets
:
member.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace ElementPack\Modules\Member\Widgets; use ElementPack\Base\Module_Base; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Group_Control_Typography; use Elementor\Group_Control_Image_Size; use Elementor\Repeater; use Elementor\Icons_Manager; use ElementPack\Modules\Member\Skins; use ElementPack\Traits\Global_Mask_Controls; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Member extends Module_Base { use Global_Mask_Controls; public function get_name() { return 'bdt-member'; } public function get_title() { return BDTEP . esc_html__( 'Member', 'bdthemes-element-pack' ); } public function get_icon() { return 'bdt-wi-member'; } public function get_categories() { return [ 'element-pack' ]; } public function get_keywords() { return [ 'member', 'team', 'experts' ]; } public function get_style_depends() { if ( $this->ep_is_edit_mode() ) { return [ 'elementor-icons-fa-solid', 'elementor-icons-fa-brands', 'ep-styles' ]; } else { return [ 'elementor-icons-fa-solid', 'elementor-icons-fa-brands', 'ep-member' ]; } } public function get_custom_help_url() { return 'https://youtu.be/m8_KOHzssPA'; } protected function register_skins() { $this->add_skin( new Skins\Skin_Band( $this ) ); $this->add_skin( new Skins\Skin_Calm( $this ) ); $this->add_skin( new Skins\Skin_Ekip( $this ) ); $this->add_skin( new Skins\Skin_Phaedra( $this ) ); $this->add_skin( new Skins\Skin_Partait( $this ) ); $this->add_skin( new Skins\Skin_Flip( $this ) ); } protected function is_dynamic_content(): bool { return false; } protected function register_controls() { $this->start_controls_section( 'section_content_layout', [ 'label' => esc_html__( 'Layout', 'bdthemes-element-pack' ), ] ); $this->add_control( 'photo', [ 'label' => esc_html__( 'Choose Photo', 'bdthemes-element-pack' ), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true ], 'default' => [ 'url' => BDTEP_ASSETS_URL . 'images/member.svg', ], ] ); $this->add_control( 'member_alternative_photo', [ 'label' => esc_html__( 'Alternative Photo', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, ] ); $this->add_control( 'alternative_photo', [ 'label' => esc_html__( 'Choose Photo', 'bdthemes-element-pack' ), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true ], 'default' => [ 'url' => BDTEP_ASSETS_URL . 'images/member.svg', ], 'condition' => [ 'member_alternative_photo' => 'yes', ], ] ); $this->add_control( 'image_mask_popover', [ 'label' => esc_html__( 'Image Mask', 'bdthemes-element-pack' ), 'type' => Controls_Manager::POPOVER_TOGGLE, 'render_type' => 'template', 'return_value' => 'yes', ] ); //Global Image Mask Controls $this->register_image_mask_controls(); $this->add_control( 'name', [ 'label' => esc_html__( 'Name', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__( 'John Doe', 'bdthemes-element-pack' ), 'placeholder' => esc_html__( 'Member Name', 'bdthemes-element-pack' ), 'dynamic' => [ 'active' => true ], ] ); $this->add_control( 'role', [ 'label' => esc_html__( 'Role', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__( 'Managing Director', 'bdthemes-element-pack' ), 'placeholder' => esc_html__( 'Member Role', 'bdthemes-element-pack' ), 'dynamic' => [ 'active' => true ], ] ); $this->add_control( 'description_text', [ 'label' => esc_html__( 'Description', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXTAREA, 'default' => esc_html__( 'Type here some info about this team member, the man very important person of our company.', 'bdthemes-element-pack' ), 'placeholder' => esc_html__( 'Member Description', 'bdthemes-element-pack' ), 'rows' => 10, 'condition' => [ '_skin' => [ '', 'bdt-partait', 'bdt-band', 'bdt-flip' ] ], 'dynamic' => [ 'active' => true ], ] ); $this->add_control( 'member_social_icon', [ 'label' => esc_html__( 'Social Icon', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_responsive_control( 'skin_partait_align', [ 'label' => esc_html__( 'Alignment', 'bdthemes-element-pack' ) . BDTEP_NC, 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => esc_html__( 'Justified', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-justify', ], ], 'selectors' => [ '{{WRAPPER}} .skin-partait .bdt-member-desc-wrapper' => 'text-align: {{VALUE}} !important;', ], 'condition' => [ '_skin' => 'bdt-partait' ] ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_social_link', [ 'label' => esc_html__( 'Social Icon', 'bdthemes-element-pack' ), 'condition' => [ 'member_social_icon' => 'yes' ], ] ); $repeater = new Repeater(); $repeater->add_control( 'social_link_title', [ 'label' => esc_html__( 'Title', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => 'Facebook', ] ); $repeater->add_control( 'social_link', [ 'label' => esc_html__( 'Link', 'bdthemes-element-pack' ), 'type' => Controls_Manager::TEXT, 'default' => 'http://www.facebook.com/bdthemes/', ] ); $repeater->add_control( 'social_share_icon', [ 'label' => esc_html__( 'Choose Icon', 'bdthemes-element-pack' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'social_icon', ] ); $repeater->add_control( 'icon_background', [ 'label' => esc_html__( 'Icon Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icons {{CURRENT_ITEM}}' => 'background-color: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $repeater->add_control( 'icon_color', [ 'label' => esc_html__( 'Icon Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icons {{CURRENT_ITEM}}' => 'color: {{VALUE}}', '{{WRAPPER}} .bdt-member .bdt-member-icons {{CURRENT_ITEM}} svg' => 'fill: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_control( 'social_link_list', [ 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'default' => [ [ 'social_link' => 'http://www.facebook.com/bdthemes/', 'social_share_icon' => [ 'value' => 'fab fa-facebook-f', 'library' => 'fa-brands' ], 'social_link_title' => 'Facebook', ], [ 'social_link' => 'http://www.twitter.com/bdthemes/', 'social_share_icon' => [ 'value' => 'fab fa-twitter', 'library' => 'fa-brands' ], 'social_link_title' => 'Twitter', ], [ 'social_link' => 'http://www.linkedin.com/bdthemes/', 'social_share_icon' => [ 'value' => 'fab fa-linkedin-in', 'library' => 'fa-brands' ], 'social_link_title' => 'Linkedin', ], ], 'title_field' => '{{{ social_link_title }}}', ] ); $this->end_controls_section(); //style $this->start_controls_section( 'section_style', [ 'label' => esc_html__( 'Member', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ '_skin' => [ '', 'bdt-band' ], ], ] ); $this->add_control( 'band_item_background_color', [ 'label' => __( 'Background Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .skin-band .bdt-member-item-wrapper' => 'background: {{VALUE)}};', ], 'condition' => [ '_skin' => [ 'bdt-band' ], ], ] ); $this->add_control( 'band_overlay_color', [ 'label' => __( 'Overlay Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .skin-band .bdt-member-photo:before' => 'background: {{VALUE)}};', ], 'condition' => [ '_skin' => [ 'bdt-band' ], ], ] ); $this->add_responsive_control( 'text_align', [ 'label' => esc_html__( 'Text Alignment', 'bdthemes-element-pack' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => esc_html__( 'Justified', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-justify', ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member' => 'text-align: {{VALUE}};', ], ] ); $this->add_control( 'desc_padding', [ 'label' => esc_html__( 'Description Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_flip_style', [ 'label' => __( 'Flip Style', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ '_skin' => 'bdt-flip', ], ] ); $this->add_control( 'back_background_color', [ 'label' => __( 'Back Background Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-skin-flip-back' => 'background-color: {{VALUE}};', ], 'condition' => [ 'member_alternative_photo' => '', ], ] ); $this->add_responsive_control( 'skin_flip_height', [ 'label' => __( 'Height', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 100, 'max' => 1000, ], 'vh' => [ 'min' => 10, 'max' => 100, ], ], 'size_units' => [ 'px', 'vh' ], 'selectors' => [ '{{WRAPPER}} .skin-flip' => 'height: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'flip_border_radius', [ 'label' => __( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-skin-flip-layer, {{WRAPPER}} .bdt-skin-flip-layer-overlay' => 'border-radius: {{SIZE}}{{UNIT}}', ], ] ); $this->add_responsive_control( 'flip_desc_padding', [ 'label' => esc_html__( 'Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-skin-flip-layer-overlay' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'flip_text_align', [ 'label' => esc_html__( 'Text Alignment', 'bdthemes-element-pack' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => esc_html__( 'Justified', 'bdthemes-element-pack' ), 'icon' => 'eicon-text-align-justify', ], ], 'selectors' => [ '{{WRAPPER}} .skin-flip .bdt-member-content' => 'text-align: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'thumbnail_size', 'label' => esc_html__( 'Image Size', 'bdthemes-element-pack' ), 'exclude' => [ 'custom' ], 'default' => 'full', 'prefix_class' => 'bdt-member--thumbnail-size-', ] ); $this->add_control( 'flip_effect', [ 'label' => __( 'Flip Effect', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => 'flip', 'options' => [ 'flip' => __( 'Flip', 'bdthemes-element-pack' ), 'slide' => __( 'Slide', 'bdthemes-element-pack' ), 'push' => __( 'Push', 'bdthemes-element-pack' ), ], 'prefix_class' => 'bdt-skin-flip-effect-', ] ); $this->add_control( 'flip_direction', [ 'label' => __( 'Flip Direction', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => 'left', 'options' => [ 'left' => __( 'Left', 'bdthemes-element-pack' ), 'right' => __( 'Right', 'bdthemes-element-pack' ), 'up' => __( 'Up', 'bdthemes-element-pack' ), 'down' => __( 'Down', 'bdthemes-element-pack' ), ], 'prefix_class' => 'bdt-skin-flip-direction-', ] ); $this->add_control( 'flip_3d', [ 'label' => __( '3D Depth', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'prefix_class' => 'bdt-skin-flip-3d-', 'condition' => [ 'flip_effect' => 'flip', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_photo', [ 'label' => esc_html__( 'Photo', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ '_skin!' => 'bdt-flip', ], ] ); $this->start_controls_tabs( 'tabs_photo_style' ); $this->start_controls_tab( 'tab_photo_normal', [ 'label' => esc_html__( 'Normal', 'bdthemes-element-pack' ), ] ); $this->add_control( 'photo_background', [ 'label' => esc_html__( 'Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'photo_border', 'label' => esc_html__( 'Border', 'bdthemes-element-pack' ), 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-member .bdt-member-photo', 'separator' => 'before', ] ); $this->add_control( 'photo_border_radius', [ 'label' => esc_html__( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', ], ] ); $this->add_control( 'photo_opacity', [ 'label' => esc_html__( 'Opacity (%)', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo img' => 'opacity: {{SIZE}};', ], ] ); $this->add_control( 'photo_spacing', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo' => 'margin-bottom: {{SIZE}}{{UNIT}}', ], 'condition' => [ '_skin!' => [ 'bdt-band' ], ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_photo_hover', [ 'label' => esc_html__( 'Hover', 'bdthemes-element-pack' ), ] ); $this->add_control( 'photo_hover_border_color', [ 'label' => esc_html__( 'Border Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'condition' => [ 'border_border!' => '', ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo:hover' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'photo_hover_opacity', [ 'label' => esc_html__( 'Opacity (%)', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-photo:hover img' => 'opacity: {{SIZE}};', ], ] ); $this->add_control( 'photo_hover_animation', [ 'label' => esc_html__( 'Animation', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => 'None', 'up' => 'Scale Up', 'down' => 'Scale Down', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_style_name', [ 'label' => esc_html__( 'Name', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'name_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-name' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'name_typography', 'selector' => '{{WRAPPER}} .bdt-member .bdt-member-name', ] ); $this->add_responsive_control( 'name_bottom_space', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member-name' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin!' => 'bdt-ekip', ], ] ); $this->add_responsive_control( 'ekip_name_bottom_space', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'unit' => '%', ], 'size_units' => [ '%' ], 'range' => [ '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .skin-ekip:hover .bdt-member-name' => 'top: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin' => 'bdt-ekip', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_role', [ 'label' => esc_html__( 'Role', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'role_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-role' => 'color: {{VALUE}};', ], ] ); $this->add_responsive_control( 'role_bottom_space', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-role' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin!' => 'bdt-ekip', ], ] ); $this->add_responsive_control( 'ekip_role_bottom_space', [ 'label' => esc_html__( 'Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'unit' => '%', ], 'size_units' => [ '%' ], 'range' => [ '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .skin-ekip:hover .bdt-member-role' => 'top: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin' => 'bdt-ekip', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'role_typography', 'selector' => '{{WRAPPER}} .bdt-member .bdt-member-role', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_text', [ 'label' => esc_html__( 'Text', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ '_skin' => [ '', 'bdt-band', 'bdt-flip', 'bdt-partait' ], ], ] ); $this->add_control( 'text_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-text' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'text_typography', 'selector' => '{{WRAPPER}} .bdt-member .bdt-member-text', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_social_icon', [ 'label' => esc_html__( 'Social Icon', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'member_social_icon' => 'yes' ], ] ); $this->add_control( 'icon_content_background', [ 'label' => esc_html__( 'Icons Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icons' => 'background-color: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_responsive_control( 'social_icon_content_padding', [ 'label' => esc_html__( 'Icons Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icons' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->start_controls_tabs( 'tabs_social_icon_style' ); $this->start_controls_tab( 'tab_social_icon_normal', [ 'label' => esc_html__( 'Normal', 'bdthemes-element-pack' ), ] ); $this->add_control( 'icon_background', [ 'label' => esc_html__( 'Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon' => 'background-color: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_control( 'band_icon_background', [ 'label' => esc_html__( 'Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .skin-band .bdt-member-icons .bdt-member-icon:before' => 'background: {{VALUE}}', ], 'condition' => [ '_skin' => 'bdt-band', ], ] ); $this->add_control( 'icon_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon i' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-member .bdt-member-icon svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'social_icons_top_border_color', [ 'label' => esc_html__( 'Top Border Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icons' => 'border-top-color: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'social_icon_border', 'label' => esc_html__( 'Border', 'bdthemes-element-pack' ), 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-member .bdt-member-icon', 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_control( 'social_icon_border_radius', [ 'label' => esc_html__( 'Border Radius', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_responsive_control( 'social_icon_padding', [ 'label' => esc_html__( 'Padding', 'bdthemes-element-pack' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_responsive_control( 'social_icon_size', [ 'label' => esc_html__( 'Icon Size', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon i' => 'min-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .bdt-member .bdt-member-icon i:before' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .bdt-member .bdt-member-icon svg' => 'font-size: {{SIZE}}{{UNIT}};', ], // 'condition' => [ // '_skin!' => 'bdt-band', // ], ] ); //icon box size $this->add_responsive_control( 'social_icon_box_size', [ 'label' => esc_html__( 'Icon Background Size', 'bdthemes-element-pack' ) . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'selectors' => [ '{{WRAPPER}} .skin-band .bdt-member-icon:before, {{WRAPPER}} .skin-band .bdt-member-icon' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin' => 'bdt-band', ], ] ); $this->add_responsive_control( 'social_icon_indent', [ 'label' => esc_html__( 'Icon Space Between', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon + .bdt-member-icon' => 'margin-left: {{SIZE}}{{UNIT}};', ], ] ); //icon vertical spacing $this->add_responsive_control( 'social_icon_vertical_space', [ 'label' => esc_html__( 'Vertical Spacing', 'bdthemes-element-pack' ) . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'selectors' => [ '{{WRAPPER}} .skin-band .bdt-member-icons' => 'bottom: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin' => 'bdt-band', ], ] ); $this->add_responsive_control( 'ekip_icon_vertical_space', [ 'label' => esc_html__( 'Vertical Spacing', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'unit' => '%', ], 'size_units' => [ '%' ], 'range' => [ '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .skin-ekip:hover .bdt-member-icons' => 'top: {{SIZE}}{{UNIT}};', ], 'condition' => [ '_skin' => 'bdt-ekip', ], ] ); $this->add_control( 'social_icon_tooltip', [ 'label' => esc_html__( 'Tooltip', 'bdthemes-element-pack' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_social_icon_hover', [ 'label' => esc_html__( 'Hover', 'bdthemes-element-pack' ), ] ); $this->add_control( 'icon_hover_background', [ 'label' => esc_html__( 'Background', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon:hover' => 'background-color: {{VALUE}}', ], 'condition' => [ '_skin!' => 'bdt-band', ], ] ); $this->add_control( 'icon_hover_color', [ 'label' => esc_html__( 'Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon:hover i' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-member .bdt-member-icon:hover svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'icon_hover_border_color', [ 'label' => esc_html__( 'Border Color', 'bdthemes-element-pack' ), 'type' => Controls_Manager::COLOR, 'condition' => [ 'social_icon_border_border!' => '', '_skin!' => 'bdt-band', ], 'selectors' => [ '{{WRAPPER}} .bdt-member .bdt-member-icon:hover' => 'border-color: {{VALUE}}', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); if ( ! isset( $settings['social_icon'] ) && ! Icons_Manager::is_migration_allowed() ) { // add old default $settings['social_icon'] = 'fab fa-facebook-f'; } $image_mask = $settings['image_mask_popover'] == 'yes' ? ' bdt-image-mask' : ''; $this->add_render_attribute( 'image-wrap', 'class', 'bdt-member-photo-wrapper' . $image_mask ); ?> <div class="bdt-member skin-default bdt-transition-toggle"> <?php if ( ! empty( $settings['photo']['url'] ) ) : $photo_hover_animation = ( '' != $settings['photo_hover_animation'] ) ? ' bdt-transition-scale-' . $settings['photo_hover_animation'] : ''; ?> <div <?php $this->print_render_attribute_string( 'image-wrap' ); ?>> <?php if ( ( $settings['member_alternative_photo'] ) and ( ! empty( $settings['alternative_photo']['url'] ) ) ) : ?> <div class="bdt-position-relative bdt-overflow-hidden bdt-position-z-index" data-bdt-toggle="target: > .bdt-member-photo-flip; mode: hover; animation: bdt-animation-fade; queued: true; duration: 300;"> <div class="bdt-member-photo-flip bdt-position-absolute bdt-position-z-index"> <?php $thumb_url = Group_Control_Image_Size::get_attachment_image_src( $settings['alternative_photo']['id'], 'thumbnail_size', $settings ); if ( ! $thumb_url ) { printf( '<img src="%1$s" alt="%2$s">', esc_url( $settings['alternative_photo']['url'] ), esc_html( $settings['name'] ) ); } else { print( wp_get_attachment_image( $settings['alternative_photo']['id'], $settings['thumbnail_size_size'], false, [ 'alt' => esc_html( $settings['name'] ) ] ) ); } ?> </div> <?php endif; ?> <div class="bdt-member-photo"> <div class="<?php echo esc_attr( $photo_hover_animation ); ?>"> <?php $thumb_url = Group_Control_Image_Size::get_attachment_image_src( $settings['photo']['id'], 'thumbnail_size', $settings ); if ( ! $thumb_url ) { printf( '<img src="%1$s" alt="%2$s">', esc_url( $settings['photo']['url'] ), esc_html( $settings['name'] ) ); } else { print( wp_get_attachment_image( $settings['photo']['id'], $settings['thumbnail_size_size'], false, [ 'alt' => esc_html( $settings['name'] ) ] ) ); } ?> </div> </div> <?php if ( ( $settings['member_alternative_photo'] ) and ( ! empty( $settings['alternative_photo']['url'] ) ) ) : ?> </div> <?php endif; ?> </div> <?php endif; ?> <div class="bdt-member-content"> <?php if ( ! empty( $settings['name'] ) ) : ?> <span class="bdt-member-name"> <?php echo wp_kses( $settings['name'], element_pack_allow_tags( 'title' ) ); ?> </span> <?php endif; ?> <?php if ( ! empty( $settings['role'] ) ) : ?> <span class="bdt-member-role"> <?php echo wp_kses( $settings['role'], element_pack_allow_tags( 'title' ) ); ?> </span> <?php endif; ?> <?php if ( ! empty( $settings['description_text'] ) ) : ?> <div class="bdt-member-text bdt-content-wrap"> <?php echo wp_kses( $settings['description_text'], element_pack_allow_tags( 'text' ) ); ?> </div> <?php endif; ?> </div> <?php if ( 'yes' == $settings['member_social_icon'] ) : ?> <div class="bdt-member-icons"> <?php foreach ( $settings['social_link_list'] as $link ) : $tooltip = 'yes' == $settings['social_icon_tooltip'] ? ' data-bdt-tooltip="' . wp_kses_post( $link['social_link_title'] ) . '"' : ''; ?> <?php $migrated = isset( $link['__fa4_migrated']['social_share_icon'] ); $is_new = empty( $link['social_icon'] ) && Icons_Manager::is_migration_allowed(); ?> <a href="<?php echo esc_url( $link['social_link'] ); ?>" class="bdt-member-icon elementor-repeater-item-<?php echo esc_attr( $link['_id'] ); ?>" target="_blank" <?php echo wp_kses_post( $tooltip ); ?>> <?php if ( $is_new || $migrated ) : Icons_Manager::render_icon( $link['social_share_icon'], [ 'aria-hidden' => 'true', 'class' => 'fa-fw' ] ); else : ?> <i class="<?php echo esc_attr( $link['social_icon'] ); ?>" aria-hidden="true"></i> <?php endif; ?> </a> <?php endforeach; ?> </div> <?php endif; ?> </div> <?php } }