芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/elementskit-lite/widgets/team/team.php
add_script_depends('magnific-popup'); } public function get_name() { return Handler::get_name(); } public function get_title() { return Handler::get_title(); } public function get_icon() { return Handler::get_icon(); } public function get_categories() { return Handler::get_categories(); } public function get_keywords() { return Handler::get_keywords(); } public function get_help_url() { return 'https://wpmet.com/doc/team-2/'; } protected function is_dynamic_content(): bool { return false; } protected function register_controls() { // Team Content $this->start_controls_section( 'ekit_team_content', [ 'label' => esc_html__( 'Team Member Content', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_style', [ 'label' =>esc_html__( 'Style', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'default' => esc_html__( 'Default', 'elementskit-lite' ), 'overlay' => esc_html__( 'Overlay', 'elementskit-lite' ), 'centered_style' => esc_html__( 'Centered ', 'elementskit-lite' ), 'hover_info' => esc_html__( 'Hover on social', 'elementskit-lite' ), 'overlay_details' => esc_html__( 'Overlay with details', 'elementskit-lite' ), 'centered_style_details' => esc_html__( 'Centered with details ', 'elementskit-lite' ), 'long_height_hover' => esc_html__( 'Long height with hover ', 'elementskit-lite' ), 'long_height_details' => esc_html__( 'Long height with details ', 'elementskit-lite' ), 'long_height_details_hover' => esc_html__( 'Long height with details & hover', 'elementskit-lite' ), 'overlay_circle' => esc_html__( 'Overlay with circle shape', 'elementskit-lite' ), 'overlay_circle_hover' => esc_html__( 'Overlay with circle shape & hover', 'elementskit-lite' ), ], ] ); $this->add_control( 'ekit_team_image', [ 'label' => esc_html__( 'Choose Member Image', 'elementskit-lite' ), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true, ], 'default' => [ 'url' => Utils::get_placeholder_image_src(), 'id' => -1 ], ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'ekit_team_thumbnail', 'default' => 'large', ] ); $this->add_control( 'ekit_team_name', [ 'label' => esc_html__( 'Member Name', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true, ], 'default' => esc_html__( 'Jane Doe', 'elementskit-lite' ), 'placeholder' => esc_html__( 'Member Name', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_position', [ 'label' => esc_html__( 'Member Position', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true, ], 'default' => esc_html__( 'Designer', 'elementskit-lite' ), 'placeholder' => esc_html__( 'Member Position', 'elementskit-lite' ), ] ); // Show Icon $this->add_control( 'ekit_team_toggle_icon', [ 'label' => esc_html__( 'Show Icon', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'no', 'condition' => [ 'ekit_team_style' => 'default', ], ] ); $this->add_control( 'ekit_team_top_icons', [ 'label' => esc_html__( 'Icon', 'elementskit-lite' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'ekit_team_top_icon', 'default' => [ 'value' => 'icon icon-team1', 'library' => 'ekiticons', ], 'condition' => [ 'ekit_team_style' => 'default', 'ekit_team_toggle_icon' => 'yes', ], ] ); // Show Description $this->add_control( 'ekit_team_show_short_description', [ 'label' => esc_html__( 'Show Description', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'no', ] ); $this->add_control( 'ekit_team_short_description', [ 'label' => esc_html__( 'About Member', 'elementskit-lite' ), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => [ 'active' => true, ], 'default' => esc_html__( 'A small river named Duden flows by their place and supplies it with the necessary', 'elementskit-lite' ), 'placeholder' => esc_html__( 'About Member', 'elementskit-lite' ), 'condition' => [ 'ekit_team_show_short_description' => 'yes' ], ] ); $this->end_controls_section(); // Team Social section $this->start_controls_section( 'ekit_team_section_social', [ 'label' => esc_html__( 'Social Profiles', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_socail_enable', [ 'label' => esc_html__( 'Display Social Profiles?', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $popup_selector = '.team-popup-id-{{ID}}'; $social = new Repeater(); $social->add_control( 'ekit_team_icons', [ 'label' => esc_html__( 'Icon', 'elementskit-lite' ), 'label_block' => true, 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'ekit_team_icon', 'default' => [ 'value' => 'icon icon-facebook', 'library' => 'ekiticons', ], ] ); $social->add_control( 'ekit_team_label', [ 'label' => esc_html__( 'Label', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true, ], 'default' => 'Facebook', ] ); $social->add_control( 'ekit_team_link', [ 'label' => esc_html__( 'Link', 'elementskit-lite' ), 'type' => Controls_Manager::URL, 'dynamic' => [ 'active' => true, ], 'default' => [ 'url' => 'https://facebook.com', ], ] ); // start tab for content $social->start_controls_tabs( 'ekit_team_socialmedia_tabs' ); // start normal tab $social->start_controls_tab( 'ekit_team_socialmedia_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); // set social icon color $social->add_control( 'ekit_team_socialmedia_icon_color', [ 'label' =>esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#FFFFFF', 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} > a' => 'color: {{VALUE}};', '{{WRAPPER}} {{CURRENT_ITEM}} > a svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a' => 'color: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};' ], ] ); // set social icon background color $social->add_control( 'ekit_team_socialmedia_icon_bg_color', [ 'label' =>esc_html__( 'Background Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#a1a1a1', 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} > a' => 'background-color: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a' => 'background-color: {{VALUE}};', ], ] ); $social->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_socialmedia_border', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a,'. $popup_selector . ' {{CURRENT_ITEM}} > a', ] ); $social->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'ekit_team_socialmedia_icon_normal_text_shadow', 'label' => esc_html__( 'Text Shadow', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a,' . $popup_selector . ' {{CURRENT_ITEM}} > a', ] ); $social->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_socialmedai_list_box_shadow', 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a,' . $popup_selector . ' {{CURRENT_ITEM}} > a', ] ); $social->end_controls_tab(); // end normal tab //start hover tab $social->start_controls_tab( 'ekit_team_socialmedia_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); // set social icon color $social->add_control( 'ekit_team_socialmedia_icon_hover_color', [ 'label' =>esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover' => 'color: {{VALUE}};', '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a:hover' => 'color: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a:hover svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); // set social icon background color $social->add_control( 'ekit_team_socialmedia_icon_hover_bg_color', [ 'label' =>esc_html__( 'Background Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#3b5998', 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover' => 'background-color: {{VALUE}};', $popup_selector . ' {{CURRENT_ITEM}} > a:hover' => 'background-color: {{VALUE}};', ], ] ); $social->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_socialmedia_border_hover', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover,' . $popup_selector . ' {{CURRENT_ITEM}} > a:hover', ] ); $social->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'ekit_team_socialmedia_icon_hover_text_shadow', 'label' => esc_html__( 'Text Shadow', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover,' . $popup_selector . ' {{CURRENT_ITEM}} > a:hover', ] ); $social->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_socialmedai_list_box_shadow_hover', 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} > a:hover,' . $popup_selector . ' {{CURRENT_ITEM}} > a:hover', ] ); $social->end_controls_tab(); //end hover tab $social->end_controls_tabs(); $this->add_control( 'ekit_team_social_icons', [ 'label' => esc_html__('Add Icon', 'elementskit-lite'), 'type' => Controls_Manager::REPEATER, 'fields' => $social->get_controls(), 'default' => [ [ 'ekit_team_label' => esc_html__('Facebook', 'elementskit-lite'), 'ekit_team_icons' => [ 'value' => 'icon icon-facebook', 'library' => 'ekiticons', ], 'ekit_team_socialmedia_icon_hover_bg_color' => '#3b5998', ], [ 'ekit_team_label' => esc_html__('Twitter', 'elementskit-lite'), 'ekit_team_icons' => [ 'value' => 'icon icon-twitter', 'library' => 'ekiticons', ], 'ekit_team_socialmedia_icon_hover_bg_color' => '#1da1f2', ], [ 'ekit_team_label' => esc_html__('Pinterest', 'elementskit-lite'), 'ekit_team_icons' => [ 'value' => 'icon icon-pinterest', 'library' => 'ekiticons', ], 'ekit_team_socialmedia_icon_hover_bg_color' => '#e60023', ], ], 'title_field' => '{{{ ekit_team_label }}}', 'condition' => [ 'ekit_team_socail_enable' => 'yes' ] ] ); $this->end_controls_section(); $this->start_controls_section( 'ekit_team_popup_details', [ 'label' => esc_html__( 'Pop Up Details', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'ekit_team_chose_popup', [ 'label' => esc_html__( 'Show Popup', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'ekit_team_description', [ 'label' => esc_html__( 'About Member', 'elementskit-lite' ), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => [ 'active' => true, ], 'default' => esc_html__( 'A small river named Duden flows by their place and supplies it with the necessary', 'elementskit-lite' ), 'placeholder' => esc_html__( 'About Member', 'elementskit-lite' ), 'condition' => [ 'ekit_team_chose_popup' => 'yes' ], ] ); $this->add_control( 'ekit_team_phone', [ 'label' => esc_html__( 'Phone', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true, ], 'default' => '+1 (859) 254-6589', 'placeholder' => esc_html__( 'Phone Number', 'elementskit-lite' ), 'condition' => [ 'ekit_team_chose_popup' => 'yes' ], ] ); $this->add_control( 'ekit_team_email', [ 'label' => esc_html__( 'Email', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'dynamic' => [ 'active' => true, ], 'default' => 'info@example.com', 'placeholder' => esc_html__( 'Email Address', 'elementskit-lite' ), 'condition' => [ 'ekit_team_chose_popup' => 'yes' ], ] ); // Close icon change option $this->add_control( 'ekit_team_close_icon_changes', [ 'label' => esc_html__( 'Close Icon', 'elementskit-lite' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'ekit_team_close_icon_change', 'default' => [ 'value' => 'fas fa-times', 'library' => 'fa-solid', ], 'label_block' => true, 'condition' => [ 'ekit_team_chose_popup' => 'yes' ], 'separator' => 'before', ] ); $this->add_control( 'ekit_team_close_icon_alignment', [ 'label' => esc_html__( 'Close Icon Alignment', 'elementskit-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'elementskit-lite' ), 'icon' => 'eicon-text-align-left', ], 'right' => [ 'title' => esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'eicon-text-align-right', ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => '{{VALUE}}: 10px;', ], 'default' => 'right', 'condition' => [ 'ekit_team_chose_popup' => 'yes' ], ] ); $this->end_controls_section(); // start style section here // Team content section style start $this->start_controls_section( 'ekit_team_content_style', [ 'label' => esc_html__( 'Content', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->start_controls_tabs( 'ekit_team_background_tabs' ); // start normal tab $this->start_controls_tab( 'ekit_team_content_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_background_content_normal', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'classic', 'gradient', 'video' ], 'selector' => '{{WRAPPER}} .profile-card, {{WRAPPER}} .profile-image-card', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_content_box_shadow', 'selector' => '{{WRAPPER}} .profile-card, {{WRAPPER}} .profile-image-card', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_content_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_background_content_hover', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'classic', 'gradient' ], 'selector' => '{{WRAPPER}} .profile-card:hover, {{WRAPPER}} .profile-image-card:hover, {{WRAPPER}} .profile-card::before, {{WRAPPER}} .profile-image-card::before, {{WRAPPER}} div .profile-card .profile-body::before, {{WRAPPER}} .image-card-v3 .profile-image-card:after', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_content_box_shadow_hover_group', 'selector' => '{{WRAPPER}} .profile-card:hover, {{WRAPPER}} .profile-image-card:hover', ] ); $this->add_control( 'team_hover_animation', [ 'label' => esc_html__( 'Hover Animation', 'elementskit-lite' ), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->add_responsive_control( 'overlay_height', [ 'label' => esc_html__('Overlay Height', 'elementskit-lite'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['%', 'px'], 'range' => [ '%' => [ 'min' => 0, 'max' => 100 ], 'px' => [ 'min' => 0, 'max' => 500, 'step' => 5 ] ], 'default' => [ 'unit' => '%', ], 'selectors' => [ '{{WRAPPER}} .ekit-team-style-long_height_hover:after' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_style' => 'long_height_hover', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_control( 'content_tabs_after', [ 'type' => Controls_Manager::DIVIDER, ] ); // contentmax height $this->add_responsive_control( 'ekit_team_content_max_weight', [ 'label' => esc_html__( 'Max Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 1000, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 380, ], 'selectors' => [ '{{WRAPPER}} .profile-square-v .profile-card' => 'max-height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_style' => 'hover_info' ] ] ); // Text aliment $this->add_control( 'ekit_team_content_text_align', [ 'label' => esc_html__( 'Alignment', 'elementskit-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'text-left' => [ 'title' => esc_html__( 'Left', 'elementskit-lite' ), 'icon' => 'eicon-text-align-left', ], 'text-center' => [ 'title' => esc_html__( 'Center', 'elementskit-lite' ), 'icon' => 'eicon-text-align-center', ], 'text-right' => [ 'title' => esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'text-center', 'toggle' => true, ] ); $this->add_responsive_control( 'ekit_team_content_padding', [ 'label' =>esc_html__( 'Padding', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .profile-card, {{WRAPPER}} .profile-image-card' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_content_inner_padding', [ 'label' =>esc_html__( 'Content Padding', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .profile-body' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', '{{WRAPPER}} .ekit-wid-con .profile-square-v .profile-card .profile-body' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_content_border_color_group', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .profile-card, {{WRAPPER}} .profile-image-card', ] ); $this->add_responsive_control( 'ekit_team_content_border_radius', [ 'label' =>esc_html__( 'Border Radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'default' => [ 'top' => '', 'right' => '', 'bottom' => '' , 'left' => '', ], 'selectors' => [ '{{WRAPPER}} .profile-card, {{WRAPPER}} .profile-image-card' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'ekit_team_content_overly_color_heading', [ 'label' => esc_html__( 'Hover Overy Color', 'elementskit-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', 'condition' => [ 'ekit_team_style' => 'overlay_details' ] ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_content_overly_color', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'gradient'], 'selector' => '{{WRAPPER}} .image-card-v2 .profile-image-card::before', 'condition' => [ 'ekit_team_style' => 'overlay_details' ] ] ); $this->add_control( 'ekit_team_remove_gutters', [ 'label' => esc_html__( 'Remove Gutter?', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'Yes', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => '', ] ); $this->end_controls_section(); // team content section style end // Image Styles section $this->start_controls_section( 'ekit_team_image_style', [ 'label' => esc_html__( 'Image', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'ekit_team_image_weight', [ 'label' => esc_html__( 'Image Size', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%', 'em' ], 'range' => [ 'px' => [ 'min' => 10, 'max' => 300, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-wid-con .profile-square-v.square-v4 .profile-card .profile-header' => 'padding-top: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .profile-header > img, {{WRAPPER}} .profile-image-card img, {{WRAPPER}} .profile-image-card, {{WRAPPER}} .profile-header ' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};' ], 'default' => [ 'unit' => '%' ] ] ); $this->add_responsive_control( 'ekit_team_image_height', [ 'label' => esc_html__('Height', 'elementskit-lite'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px', 'em'], 'range' => [ 'px' => [ 'min' => 1, 'max' => 500, ], ], 'condition' => [ 'team_style!' => 'overlay', ], 'selectors' => [ '{{WRAPPER}} .profile-card .profile-header' => 'height: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_image_height_margin_bottom', [ 'label' => esc_html__( 'Margin', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'selectors' => [ '{{WRAPPER}} .profile-card .profile-header' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_image_width', [ 'label' => esc_html__('Width', 'elementskit-lite'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px', 'em', '%'], 'range' => [ 'px' => [ 'min' => 1, 'max' => 500, ], ], 'condition' => [ 'team_style!' => 'overlay', ], 'selectors' => [ '{{WRAPPER}} .profile-card .profile-header' => 'width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_image_shadow', 'selector' => '{{WRAPPER}} .profile-card .profile-header', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'modal_img_shadow', 'label' => esc_html__('Box Shadow (Popup)', 'elementskit-lite'), 'selector' => '{{WRAPPER}} .ekit-team-modal-img > img', 'condition' => [ 'ekit_team_chose_popup' => 'yes', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_image_border', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .profile-card .profile-header', ] ); $this->add_responsive_control( 'ekit_team_image_radius', [ 'label' => esc_html__( 'Border radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'selectors' => [ '{{WRAPPER}} .ekit-team-img.profile-header > img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'default' => [ 'top' => '50', 'right' => '50', 'left' => '50', 'bottom' => '50', 'unit' => '%', ] ] ); $this->add_responsive_control( 'ekit_team_image_margin', [ 'label' => esc_html__( 'Margin', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'condition' => [ 'team_style!' => 'overlay', ], 'selectors' => [ '{{WRAPPER}} .profile-card .profile-header' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_image_background', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'classic', 'gradient' ], 'selector' => '{{WRAPPER}} .profile-card .profile-header', ] ); $this->add_control( 'ekit_team_default_img_overlay_h', [ 'label' => esc_html__( 'Overlay', 'elementskit-lite' ), 'type' => \Elementor\Controls_Manager::HEADING, 'separator' => 'before', 'condition' => [ 'ekit_team_style' => 'default', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_default_img_overlay', 'label' => esc_html__( 'Overlay', 'elementskit-lite' ), 'types' => [ 'classic', 'gradient' ], 'selector' => '{{WRAPPER}} .profile-header:before', 'condition' => [ 'ekit_team_style' => 'default', ], ] ); $this->end_controls_section(); // Icon Styles $this->start_controls_section( 'ekit_team_top_icon_style', [ 'label' => esc_html__( 'Icon', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'ekit_team_style' => 'default', 'ekit_team_toggle_icon' => 'yes', ], ] ); $this->add_responsive_control( 'ekit_team_top_icon_align', [ 'label' => esc_html__( 'Alignment', 'elementskit-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'start' => [ 'title' => esc_html__( 'Left', 'elementskit-lite' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'eicon-text-align-right', ], 'end' => [ 'title' => esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'eicon-text-align-right', ], ], 'toggle' => true, ] ); $this->add_responsive_control( 'ekit_team_top_icon_margin', [ 'label' => esc_html__( 'Margin', 'elementskit-lite' ), 'type' => \Elementor\Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_top_icon_padding', [ 'label' => esc_html__( 'Padding', 'elementskit-lite' ), 'type' => \Elementor\Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_top_icon_border_radius', [ 'label' => esc_html__( 'Border Radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'default' => [ 'top' => '50', 'left' => '50', 'right' => '50', 'bottom'=> '50', 'unit' => '%' ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_top_icon_shadow', 'selector' => '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg', ] ); $this->add_responsive_control( 'ekit_team_top_icon_fsize', [ 'label' => esc_html__( 'Font Size', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 6, 'max' => 300, ], ], 'default' => [ 'size' => 22, 'unit' => 'px', ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .profile-icon > svg' => 'max-width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'ekit_team_top_icon_hw', [ 'label' => esc_html__( 'Use Height Width', 'elementskit-lite' ), 'description' => esc_html__('For svg icon, We don\'t need this. We will use font size and padding for adjusting size.', 'elementskit-lite'), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_responsive_control( 'ekit_team_top_icon_width', [ 'label' => esc_html__( 'Width', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, ], ], 'default' => [ 'size' => 60, 'unit' => 'px', ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i' => 'width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_top_icon_hw' => 'yes' ], ] ); $this->add_responsive_control( 'ekit_team_top_icon_height', [ 'label' => esc_html__( 'Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, ], ], 'default' => [ 'size' => 60, 'unit' => 'px', ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_top_icon_hw' => 'yes' ], ] ); $this->add_responsive_control( 'ekit_team_top_icon_lheight', [ 'label' => esc_html__( 'Line Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, ], ], 'default' => [ 'size' => 60, 'unit' => 'px', ], 'selectors' => [ '{{WRAPPER}} .profile-icon > i' => 'line-height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_top_icon_hw' => 'yes' ], ] ); $this->start_controls_tabs( 'top_icon_colors' ); $this->start_controls_tab( 'ekit_team_top_icon_colors_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_top_icon_n_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#fff', 'selectors' => [ '{{WRAPPER}} .profile-icon > i' => 'color: {{VALUE}};', '{{WRAPPER}} .profile-icon > svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_control( 'ekit_team_top_icon_n_bgcolor', [ 'label' => esc_html__( 'Background Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#fc0467', 'selectors' => [ '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_top_icon_n_border', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .profile-icon > i, {{WRAPPER}} .profile-icon > svg', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_top_icon_colors_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_top_icon_h_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .profile-icon > i:hover' => 'color: {{VALUE}};', '{{WRAPPER}} .profile-icon > svg:hover path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_control( 'ekit_team_top_icon_h_bgcolor', [ 'label' => esc_html__( 'Background Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .profile-icon > i:hover, {{WRAPPER}} .profile-icon > svg:hover' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_top_icon_h_border', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .profile-icon > i:hover, {{WRAPPER}} .profile-icon > svg:hover', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); // Name Styles $this->start_controls_section( 'ekit_team_name_style', [ 'label' => esc_html__( 'Name', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_name_typography', 'selector' => '{{WRAPPER}} .profile-body .profile-title', ] ); $this->start_controls_tabs( 'ekit_team_name_tabs' ); $this->start_controls_tab( 'ekit_team_name_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_name_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-body .profile-title' => 'color: {{VALUE}};' ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_name_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_name_hover_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-body:hover .profile-title' => 'color: {{VALUE}};', '{{WRAPPER}} .profile-card:hover .profile-title' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'ekit_team_name_margin', [ 'label' => esc_html__('Margin Bottom', 'elementskit-lite'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px', 'em'], 'separator' => 'before', 'selectors' => [ '{{WRAPPER}} .profile-body .profile-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); // Position Styles $this->start_controls_section( 'ekit_team_position_style', [ 'label' => esc_html__( 'Position', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_position_typography', 'selector' => '{{WRAPPER}} .profile-body .profile-designation', ] ); $this->start_controls_tabs( 'ekit_team_position_tabs' ); $this->start_controls_tab( 'ekit_team_position_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_position_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-body .profile-designation' => 'color: {{VALUE}};' ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_position_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_position_hover_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-card:hover .profile-body .profile-designation, {{WRAPPER}} .profile-body .profile-designation:hover' => 'color: {{VALUE}};' ], ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'ekit_team_position_hover_shadow', 'selector' => '{{WRAPPER}} .profile-card:hover .profile-body .profile-designation, {{WRAPPER}} .profile-body .profile-designation:hover', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'ekit_team_position_margin_bottom', [ 'label' => esc_html__( 'Margin Bottom', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 150, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .profile-body .profile-designation' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], 'separator' => 'before', ] ); $this->end_controls_section(); // Position Styles $this->start_controls_section( 'ekit_team_text_content_style_tab', [ 'label' => esc_html__( 'Description', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_text_content_typography', 'selector' => '{{WRAPPER}} .profile-body .profile-content', ] ); $this->start_controls_tabs( 'ekit_team_text_content_tabs' ); $this->start_controls_tab( 'ekit_team_text_content_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_text_content_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-body .profile-content' => 'color: {{VALUE}};' ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_text_content_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_text_content_hover_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .profile-card:hover .profile-body .profile-content' => 'color: {{VALUE}};', '{{WRAPPER}} .profile-image-card:hover .profile-body .profile-content' => 'color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'ekit_team_text_content_margin_bottom', [ 'label' => esc_html__( 'Margin', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'selectors' => [ '{{WRAPPER}} .profile-body .profile-content' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'separator' => 'before', ] ); $this->end_controls_section(); // Social Styles $this->start_controls_section( 'ekit_team_social_style', [ 'label' => esc_html__( 'Social Profiles', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'ekit_team_socail_enable' => 'yes' ] ] ); // Alignment $this->add_responsive_control( 'ekit_socialmedai_list_item_align', [ 'label' => esc_html__( 'Alignment', 'elementskit-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'elementskit-lite' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'elementskit-lite' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'center', 'toggle' => true, 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'text-align: {{VALUE}};', $popup_selector . ' .ekit-team-social-list > li > a' => 'text-align: {{VALUE}};', ], ] ); // Display design $this->add_responsive_control( 'ekit_socialmedai_list_display', [ 'label' => esc_html__( 'Display', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'inline-block', 'options' => [ 'inline-block' => esc_html__( 'Inline Block', 'elementskit-lite' ), 'block' => esc_html__( 'Block', 'elementskit-lite' ), ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li' => 'display: {{VALUE}};', $popup_selector . ' .ekit-team-social-list > li' => 'display: {{VALUE}};', ], ] ); // text decoration $this->add_responsive_control( 'ekit_socialmedai_list_decoration_box', [ 'label' => esc_html__( 'Decoration', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'none', 'options' => [ 'none' => esc_html__( 'None', 'elementskit-lite' ), 'underline' => esc_html__( 'Underline', 'elementskit-lite' ), 'overline' => esc_html__( 'Overline', 'elementskit-lite' ), 'line-through' => esc_html__( 'Line Through', 'elementskit-lite' ), ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'text-decoration: {{VALUE}};', $popup_selector . ' .ekit-team-social-list > li > a' => 'text-decoration: {{VALUE}};' ], ] ); // border radius $this->add_responsive_control( 'ekit_socialmedai_list_border_radius', [ 'label' => esc_html__( 'Border radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'default' => [ 'top' => '50', 'right' => '50', 'bottom' => '50' , 'left' => '50', 'unit' => '%', ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector . ' .ekit-team-social-list > li > a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); // Padding style $this->add_responsive_control( 'ekit_socialmedai_list_padding', [ 'label' => esc_html__('Padding', 'elementskit-lite'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em'], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector . ' .ekit-team-social-list > li > a' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); // margin style $this->add_responsive_control( 'ekit_socialmedai_list_margin', [ 'label' => esc_html__('Margin', 'elementskit-lite'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em'], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_socialmedai_list_icon_size', [ 'label' => esc_html__( 'Icon Size', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 100, 'step' => 5, ], '%' => [ 'min' => 1, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a i' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .ekit-team-social-list > li > a svg' => 'max-width: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li > a i' => 'font-size: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li > a svg' => 'max-width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_socialmedai_list_typography', 'label' => esc_html__( 'Typography', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-team-social-list > li > a,'. $popup_selector . ' .ekit-team-social-list > li > a', ] ); $this->add_control( 'ekit_socialmedai_list_style_use_height_and_width', [ 'label' => esc_html__( 'Use Height Width', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'no', ] ); $this->add_responsive_control( 'ekit_socialmedai_list_width', [ 'label' => esc_html__( 'Width', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 30, ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'width: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li > a' => 'width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_socialmedai_list_style_use_height_and_width' => 'yes' ] ] ); $this->add_responsive_control( 'ekit_socialmedai_list_height', [ 'label' => esc_html__( 'Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 30, ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'height: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li > a' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_socialmedai_list_style_use_height_and_width' => 'yes' ] ] ); $this->add_responsive_control( 'ekit_socialmedai_list_line_height', [ 'label' => esc_html__( 'Line Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 30, ], 'selectors' => [ '{{WRAPPER}} .ekit-team-social-list > li > a' => 'line-height: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-social-list > li > a' => 'line-height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_socialmedai_list_style_use_height_and_width' => 'yes' ] ] ); $this->end_controls_section(); // Overlay Styles $this->start_controls_section( 'ekit_team_overlay_style', [ 'label' => esc_html__( 'Overlay', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'team_style' => 'overlay', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_background_overlay', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'gradient' ], 'selector' => '{{WRAPPER}} .profile-image-card:before', ] ); $this->end_controls_section(); // Modal Styles start here $this->start_controls_section( 'ekit_team_modal_style', [ 'label' => esc_html__( 'Modal Controls', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'ekit_team_chose_popup' => 'yes' ] ] ); $this->add_control( 'ekit_team_modal_heading', [ 'label' => esc_html__( 'Modal', 'elementskit-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'ekit_team_modal_background', 'label' => esc_html__( 'Background', 'elementskit-lite' ), 'types' => [ 'classic', 'gradient' ], 'selector' => '{{WRAPPER}} .elementskit-team-popup .modal-content, ' . $popup_selector . '.elementskit-team-popup .modal-content', ] ); $this->add_control( 'ekit_team_modal_name_heading', [ 'label' => esc_html__( 'Name', 'elementskit-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'ekit_team_modal_name_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-title' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-title' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_modal_name_typography', 'selector' => '{{WRAPPER}} .ekit-team-modal-title,' . $popup_selector . ' .ekit-team-modal-title', ] ); $this->add_responsive_control( 'ekit_team_modal_name_margin_bottom', [ 'label' => esc_html__( 'Margin Bottom', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 150, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'ekit_team_modal_position_heading', [ 'label' => esc_html__( 'Position', 'elementskit-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'ekit_team_modal_position_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-position' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-position' => 'color: {{VALUE}};' ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_modal_position_typography', 'selector' => '{{WRAPPER}} .ekit-team-modal-position,' . $popup_selector . ' .ekit-team-modal-position', ] ); $this->add_responsive_control( 'ekit_team_modal_position_margin_bottom', [ 'label' => esc_html__( 'Margin Bottom', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 150, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-position' => 'margin-bottom: {{SIZE}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-position' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); // Modal Description $this->add_control( 'modal_desc', [ 'label' => esc_html__('Description', 'elementskit-lite'), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); // Modal Description - Color $this->add_control( 'modal_desc_color', [ 'label' => esc_html__('Color', 'elementskit-lite'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-content' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-content' => 'color: {{VALUE}};', ] ] ); // Modal Description - Typography $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'modal_desc_font', 'selector' => '{{WRAPPER}} .ekit-team-modal-content,'. $popup_selector . ' .ekit-team-modal-content', ] ); // Modal Description - Margin Bottom $this->add_responsive_control( 'modal_desc_margin_bottom', [ 'label' => esc_html__( 'Margin Bottom', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 150, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-content' => 'margin-bottom: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-modal-content' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'more_options', [ 'label' => esc_html__( 'Phone and Email', 'elementskit-lite' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_team_info_typography', 'selector' => '{{WRAPPER}} .ekit-team-modal-list,'. $popup_selector . ' .ekit-team-modal-list', ] ); $this->add_control( 'ekit_team_info_color', [ 'label' => esc_html__( 'Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-list' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-list' => 'color: {{VALUE}};' ], ] ); $this->add_control( 'ekit_team_info_hover_color', [ 'label' => esc_html__( 'Color Hover', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-list a:hover' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-list a:hover' => 'color: {{VALUE}};' ], ] ); $this->end_controls_section(); $this->start_controls_section( 'ekit_team_close_icon', [ 'label' => esc_html__( 'Close Icon', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'ekit_team_chose_popup' => 'yes' ] ] ); $this->start_controls_tabs( 'ekit_icon_box_icon_colors' ); $this->start_controls_tab( 'ekit_team_icon_colors_normal', [ 'label' => esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_icon_primary_color', [ 'label' => esc_html__( 'Icon Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#656565', 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'color: {{VALUE}};', '{{WRAPPER}} .ekit-team-modal-close svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_control( 'ekit_team_icon_secondary_color_normal', [ 'label' => esc_html__( 'Icon BG Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'background-color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_border', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-team-modal-close,' . $popup_selector .' .ekit-team-modal-close', ] ); $this->add_responsive_control( 'ekit_team_icon_border_radius', [ 'label' => esc_html__( 'Border Radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_icon_icon_box_shadow_normal_group', 'selector' => '{{WRAPPER}} .ekit-team-modal-close,' . $popup_selector . ' .ekit-team-modal-close', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_team_icon_colors_hover', [ 'label' => esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_team_hover_primary_color', [ 'label' => esc_html__( 'Icon Color (Hover)', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close:hover' => 'color: {{VALUE}};', '{{WRAPPER}} .ekit-team-modal-close:hover svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close:hover' => 'color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close:hover svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_control( 'ekit_team_hover_background_color', [ 'label' => esc_html__( 'Icon BG Color (Hover)', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close:hover' => 'background-color: {{VALUE}};', $popup_selector . ' .ekit-team-modal-close:hover' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'ekit_team_border_icon_group', 'label' => esc_html__( 'Border', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-team-modal-close:hover,' . $popup_selector . ' .ekit-team-modal-close:hover', ] ); $this->add_responsive_control( 'ekit_icon_box_icons_hover_border_radius', [ 'label' => esc_html__( 'Border Radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_team_shadow_group', 'selector' => '{{WRAPPER}} .ekit-team-modal-close:hover,' . $popup_selector . ' .ekit-team-modal-close:hover', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'ekit_team_close_icon_size', [ 'label' => esc_html__( 'Font Size', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 6, 'max' => 300, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .ekit-team-modal-close svg' => 'max-width: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-modal-close' => 'font-size: {{SIZE}}{{UNIT}};', $popup_selector .' .ekit-team-modal-close svg' => 'max-width: {{SIZE}}{{UNIT}};', ], 'separator' => 'before', ] ); $this->add_responsive_control( 'ekit_team_close_icon_padding', [ 'label' => esc_html__( 'Padding', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_team_close_icon_enable_height_width', [ 'label' => esc_html__( 'Use Height Width', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => '', ] ); $this->add_responsive_control( 'ekit_team_close_icon_width', [ 'label' => esc_html__( 'Width', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'width: {{SIZE}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close' => 'width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_close_icon_enable_height_width' => 'yes', ], ] ); $this->add_responsive_control( 'ekit_team_close_icon_height', [ 'label' => esc_html__( 'Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'height: {{SIZE}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_close_icon_enable_height_width' => 'yes', ], ] ); $this->add_responsive_control( 'ekit_team_close_icon_line_height', [ 'label' => esc_html__( 'Line Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-team-modal-close' => 'line-height: {{SIZE}}{{UNIT}};', $popup_selector . ' .ekit-team-modal-close' => 'line-height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_team_close_icon_enable_height_width' => 'yes', ], ] ); $this->add_responsive_control( 'ekit_team_close_icon_vertical_align', [ 'label' => esc_html__( 'Vertical Position ', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => -200, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .elementskit-infobox .elementskit-box-header .elementskit-info-box-icon' => ' -webkit-transform: translateY({{SIZE}}{{UNIT}}); -ms-transform: translateY({{SIZE}}{{UNIT}}); transform: translateY({{SIZE}}{{UNIT}});', $popup_selector .' .elementskit-infobox .elementskit-box-header .elementskit-info-box-icon' => ' -webkit-transform: translateY({{SIZE}}{{UNIT}}); -ms-transform: translateY({{SIZE}}{{UNIT}}); transform: translateY({{SIZE}}{{UNIT}});', ], 'condition' => [ 'ekit_icon_box_icon_position!' => 'top' ] ] ); $this->end_controls_section(); $this->insert_pro_message(); } protected function render( ) { echo '
'; $this->render_raw(); echo '
'; } protected function render_raw( ) { $settings = $this->get_settings_for_display(); extract($settings); // Image sectionn $image_html = ''; if ( !empty($ekit_team_image['url']) ) { $this->add_render_attribute('image', 'src', $ekit_team_image['url']); $this->add_render_attribute('image', 'alt', Control_Media::get_image_alt($ekit_team_image)); $this->add_render_attribute('image', 'title', Control_Media::get_image_title($ekit_team_image)); $image_html = Group_Control_Image_Size::get_attachment_image_html($settings, 'ekit_team_thumbnail', 'ekit_team_image'); } $this->add_render_attribute( 'profile_card', [ 'class' => 'profile-card elementor-animation-'. $team_hover_animation .' ' . $ekit_team_content_text_align . ' ekit-team-style-'.$ekit_team_style, ] ); // Social List if ( $ekit_team_socail_enable === 'yes' ) { foreach ($ekit_team_social_icons as $icon) { // List Item $this->add_render_attribute( 'social_item_' . $icon['_id'], 'class', 'elementor-repeater-item-' . $icon[ '_id' ] ); // Link $this->add_link_attributes( 'social_link_' . $icon['_id'], $icon['ekit_team_link'] ); $this->add_render_attribute( 'social_link_' . $icon['_id'], 'aria-label', $icon['ekit_team_label'] ); } } if ( in_array($ekit_team_style, array('default', 'centered_style', 'centered_style_details', 'long_height_details', 'long_height_details_hover')) ): ?>
get_render_attribute_string('profile_card'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped by elementor ?>>
data-toggle="modal" data-target="ekit_team_modal_#get_id() . '_' . get_the_ID()); ?>" >
'true' ] ); } else { ?>
data-toggle="modal" data-target="#ekit_team_modal_get_id() . '_' . get_the_ID()); ?>" >
'true'] ); ?>
:
: