文件操作 - widget.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/happy-elementor-addons/widgets/member/widget.php
编辑文件内容
<?php /** * Member widget class * * @package Happy_Addons */ namespace Happy_Addons\Elementor\Widget; use Elementor\Group_Control_Text_Shadow; use Elementor\Repeater; use Elementor\Scheme_Typography; use Elementor\Utils; use Elementor\Control_Media; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Group_Control_Box_Shadow; use Elementor\Group_Control_Image_Size; use Elementor\Group_Control_Typography; use Happy_Addons\Elementor\Traits\Button_Renderer; defined( 'ABSPATH' ) || die(); class Member extends Base { use Button_Renderer; /** * Get widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return __( 'Team Member', 'happy-elementor-addons' ); } public function get_custom_help_url() { return 'https://happyaddons.com/docs/happy-addons-for-elementor/widgets/team-member/'; } /** * Get widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'hm hm-team-member'; } public function get_keywords() { return [ 'team', 'member', 'crew', 'staff', 'person' ]; } protected static function get_profile_names() { return [ '500px' => __( '500px', 'happy-elementor-addons' ), 'apple' => __( 'Apple', 'happy-elementor-addons' ), 'behance' => __( 'Behance', 'happy-elementor-addons' ), 'bitbucket' => __( 'BitBucket', 'happy-elementor-addons' ), 'codepen' => __( 'CodePen', 'happy-elementor-addons' ), 'delicious' => __( 'Delicious', 'happy-elementor-addons' ), 'deviantart' => __( 'DeviantArt', 'happy-elementor-addons' ), 'digg' => __( 'Digg', 'happy-elementor-addons' ), 'dribbble' => __( 'Dribbble', 'happy-elementor-addons' ), 'email' => __( 'Email', 'happy-elementor-addons' ), 'facebook' => __( 'Facebook', 'happy-elementor-addons' ), 'flickr' => __( 'Flicker', 'happy-elementor-addons' ), 'foursquare' => __( 'FourSquare', 'happy-elementor-addons' ), 'github' => __( 'Github', 'happy-elementor-addons' ), 'houzz' => __( 'Houzz', 'happy-elementor-addons' ), 'instagram' => __( 'Instagram', 'happy-elementor-addons' ), 'jsfiddle' => __( 'JS Fiddle', 'happy-elementor-addons' ), 'linkedin' => __( 'LinkedIn', 'happy-elementor-addons' ), 'medium' => __( 'Medium', 'happy-elementor-addons' ), 'pinterest' => __( 'Pinterest', 'happy-elementor-addons' ), 'product-hunt' => __( 'Product Hunt', 'happy-elementor-addons' ), 'reddit' => __( 'Reddit', 'happy-elementor-addons' ), 'slideshare' => __( 'Slide Share', 'happy-elementor-addons' ), 'snapchat' => __( 'Snapchat', 'happy-elementor-addons' ), 'soundcloud' => __( 'SoundCloud', 'happy-elementor-addons' ), 'spotify' => __( 'Spotify', 'happy-elementor-addons' ), 'stack-overflow' => __( 'StackOverflow', 'happy-elementor-addons' ), 'tripadvisor' => __( 'TripAdvisor', 'happy-elementor-addons' ), 'tumblr' => __( 'Tumblr', 'happy-elementor-addons' ), 'twitch' => __( 'Twitch', 'happy-elementor-addons' ), 'twitter' => __( 'Twitter', 'happy-elementor-addons' ), 'vimeo' => __( 'Vimeo', 'happy-elementor-addons' ), 'vk' => __( 'VK', 'happy-elementor-addons' ), 'website' => __( 'Website', 'happy-elementor-addons' ), 'whatsapp' => __( 'WhatsApp', 'happy-elementor-addons' ), 'wordpress' => __( 'WordPress', 'happy-elementor-addons' ), 'xing' => __( 'Xing', 'happy-elementor-addons' ), 'yelp' => __( 'Yelp', 'happy-elementor-addons' ), 'youtube' => __( 'YouTube', 'happy-elementor-addons' ), ]; } /** * Register content related controls */ protected function register_content_controls() { $this->start_controls_section( '_section_info', [ 'label' => __( 'Information', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'image', [ 'label' => __( 'Photo', 'happy-elementor-addons' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'dynamic' => [ 'active' => true, ] ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'thumbnail', 'default' => 'large', 'separator' => 'none', ] ); $this->add_control( 'title', [ 'label' => __( 'Name', 'happy-elementor-addons' ), 'label_block' => true, 'type' => Controls_Manager::TEXT, 'default' => 'Happy Member Name', 'placeholder' => __( 'Type Member Name', 'happy-elementor-addons' ), 'separator' => 'before', 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'job_title', [ 'label' => __( 'Job Title', 'happy-elementor-addons' ), 'label_block' => true, 'type' => Controls_Manager::TEXT, 'default' => __( 'Happy Officer', 'happy-elementor-addons' ), 'placeholder' => __( 'Type Member Job Title', 'happy-elementor-addons' ), 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'bio', [ 'label' => __( 'Short Bio', 'happy-elementor-addons' ), 'description' => ha_get_allowed_html_desc( 'intermediate' ), 'type' => Controls_Manager::TEXTAREA, 'placeholder' => __( 'Write something amazing about the happy member', 'happy-elementor-addons' ), 'rows' => 5, 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'title_tag', [ 'label' => __( 'Title HTML Tag', 'happy-elementor-addons' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'h1' => [ 'title' => __( 'H1', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h1' ], 'h2' => [ 'title' => __( 'H2', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h2' ], 'h3' => [ 'title' => __( 'H3', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h3' ], 'h4' => [ 'title' => __( 'H4', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h4' ], 'h5' => [ 'title' => __( 'H5', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h5' ], 'h6' => [ 'title' => __( 'H6', 'happy-elementor-addons' ), 'icon' => 'eicon-editor-h6' ] ], 'default' => 'h2', 'toggle' => false, 'separator' => 'before', ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Alignment', 'happy-elementor-addons' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'happy-elementor-addons' ), 'icon' => 'fa fa-align-left', ], 'center' => [ 'title' => __( 'Center', 'happy-elementor-addons' ), 'icon' => 'fa fa-align-center', ], 'right' => [ 'title' => __( 'Right', 'happy-elementor-addons' ), 'icon' => 'fa fa-align-right', ], ], 'toggle' => true, 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}};' ] ] ); $this->end_controls_section(); $this->start_controls_section( '_section_social', [ 'label' => __( 'Social Profiles', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $repeater = new Repeater(); $repeater->add_control( 'name', [ 'label' => __( 'Profile Name', 'happy-elementor-addons' ), 'type' => Controls_Manager::SELECT2, 'label_block' => true, 'select2options' => [ 'allowClear' => false, ], 'options' => self::get_profile_names() ] ); $repeater->add_control( 'link', [ 'label' => __( 'Profile Link', 'happy-elementor-addons' ), 'placeholder' => __( 'Add your profile link', 'happy-elementor-addons' ), 'type' => Controls_Manager::URL, 'label_block' => true, 'autocomplete' => false, 'show_external' => false, 'condition' => [ 'name!' => 'email' ], 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'email', [ 'label' => __( 'Email Address', 'happy-elementor-addons' ), 'placeholder' => __( 'Add your email address', 'happy-elementor-addons' ), 'type' => Controls_Manager::TEXT, 'label_block' => false, 'input_type' => 'email', 'condition' => [ 'name' => 'email' ], 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'customize', [ 'label' => __( 'Want To Customize?', 'happy-elementor-addons' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Yes', 'happy-elementor-addons' ), 'label_off' => __( 'No', 'happy-elementor-addons' ), 'return_value' => 'yes', 'style_transfer' => true, ] ); $repeater->start_controls_tabs( '_tab_icon_colors', [ 'condition' => ['customize' => 'yes'] ] ); $repeater->start_controls_tab( '_tab_icon_normal', [ 'label' => __( 'Normal', 'happy-elementor-addons' ), ] ); $repeater->add_control( 'color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}' => 'color: {{VALUE}}', ], 'condition' => ['customize' => 'yes'], 'style_transfer' => true, ] ); $repeater->add_control( 'bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}' => 'background-color: {{VALUE}}', ], 'condition' => ['customize' => 'yes'], 'style_transfer' => true, ] ); $repeater->end_controls_tab(); $repeater->start_controls_tab( '_tab_icon_hover', [ 'label' => __( 'Hover', 'happy-elementor-addons' ), ] ); $repeater->add_control( 'hover_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:hover, {{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:focus' => 'color: {{VALUE}}', ], 'condition' => ['customize' => 'yes'], 'style_transfer' => true, ] ); $repeater->add_control( 'hover_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:hover, {{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:focus' => 'background-color: {{VALUE}}', ], 'condition' => ['customize' => 'yes'], 'style_transfer' => true, ] ); $repeater->add_control( 'hover_border_color', [ 'label' => __( 'Border Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:hover, {{WRAPPER}} .ha-member-links > {{CURRENT_ITEM}}:focus' => 'border-color: {{VALUE}}', ], 'condition' => ['customize' => 'yes'], 'style_transfer' => true, ] ); $repeater->end_controls_tab(); $repeater->end_controls_tabs(); $this->add_control( 'profiles', [ 'show_label' => false, 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'title_field' => '<# print(name.slice(0,1).toUpperCase() + name.slice(1)) #>', 'default' => [ [ 'link' => ['url' => 'https://facebook.com/'], 'name' => 'facebook' ], [ 'link' => ['url' => 'https://twitter.com/'], 'name' => 'twitter' ], [ 'link' => ['url' => 'https://linkedin.com/'], 'name' => 'linkedin' ] ], ] ); $this->add_control( 'show_profiles', [ 'label' => __( 'Show Profiles', 'happy-elementor-addons' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Show', 'happy-elementor-addons' ), 'label_off' => __( 'Hide', 'happy-elementor-addons' ), 'return_value' => 'yes', 'default' => 'yes', 'separator' => 'before', 'style_transfer' => true, ] ); $this->end_controls_section(); $this->start_controls_section( '_section_button', [ 'label' => __( 'Details Button', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'show_details_button', [ 'label' => __( 'Show Button', 'happy-elementor-addons' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Show', 'happy-elementor-addons' ), 'label_off' => __( 'Hide', 'happy-elementor-addons' ), 'return_value' => 'yes', 'default' => '', 'style_transfer' => true, ] ); $this->add_control( 'button_position', [ 'label' => __( 'Position', 'happy-elementor-addons' ), 'type' => Controls_Manager::SELECT, 'default' => 'after', 'style_transfer' => true, 'options' => [ 'before' => __( 'Before Social Icons', 'happy-elementor-addons' ), 'after' => __( 'After Social Icons', 'happy-elementor-addons' ), ], 'condition' => [ 'show_details_button' => 'yes', ] ] ); $this->add_control( 'button_text', [ 'label' => __( 'Text', 'happy-elementor-addons' ), 'type' => Controls_Manager::TEXT, 'default' => __( 'Show Details', 'happy-elementor-addons' ), 'placeholder' => __( 'Type button text here', 'happy-elementor-addons' ), 'label_block' => true, 'dynamic' => [ 'active' => true, ], 'condition' => [ 'show_details_button' => 'yes', ] ] ); $this->add_control( 'button_link', [ 'label' => __( 'Link', 'happy-elementor-addons' ), 'type' => Controls_Manager::URL, 'placeholder' => 'https://example.com', 'dynamic' => [ 'active' => true, ], 'condition' => [ 'show_details_button' => 'yes', ] ] ); $this->add_control( 'button_icon', [ 'type' => Controls_Manager::ICONS, 'label_block' => true, 'show_label' => false, 'condition' => [ 'show_details_button' => 'yes', ] ] ); $this->add_control( 'button_icon_position', [ 'label' => __( 'Icon Position', 'happy-elementor-addons' ), 'type' => Controls_Manager::CHOOSE, 'label_block' => false, 'options' => [ 'before' => [ 'title' => __( 'Before', 'happy-elementor-addons' ), 'icon' => 'eicon-h-align-left', ], 'after' => [ 'title' => __( 'After', 'happy-elementor-addons' ), 'icon' => 'eicon-h-align-right', ], ], 'default' => 'after', 'toggle' => false, 'style_transfer' => true, 'condition' => [ 'show_details_button' => 'yes', 'button_icon[value]!' => '' ] ] ); $this->add_control( 'button_icon_spacing', [ 'label' => __( 'Icon Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 10 ], 'condition' => [ 'show_details_button' => 'yes', 'button_icon[value]!' => '' ], 'selectors' => [ '{{WRAPPER}} .ha-btn--icon-before .ha-btn-icon' => 'margin-right: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .ha-btn--icon-after .ha-btn-icon' => 'margin-left: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); } /** * Register styles related controls */ protected function register_style_controls() { $this->start_controls_section( '_section_style_image', [ 'label' => __( 'Photo', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'image_width', [ 'label' => __( 'Width', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%'], 'range' => [ '%' => [ 'min' => 20, 'max' => 100, ], 'px' => [ 'min' => 100, 'max' => 700, ], ], 'selectors' => [ '{{WRAPPER}} .ha-member-figure' => 'width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'image_height', [ 'label' => __( 'Height', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px' ], 'range' => [ 'px' => [ 'min' => 100, 'max' => 700, ], ], 'selectors' => [ '{{WRAPPER}} .ha-member-figure' => 'height: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'image_spacing', [ 'label' => __( 'Bottom Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-figure' => 'margin-bottom: {{SIZE}}{{UNIT}} !important;', ], ] ); $this->add_responsive_control( 'image_padding', [ 'label' => __( 'Padding', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-member-figure img' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'image_border', 'selector' => '{{WRAPPER}} .ha-member-figure img' ] ); $this->add_responsive_control( 'image_border_radius', [ 'label' => __( 'Border Radius', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-member-figure img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'image_box_shadow', 'exclude' => [ 'box_shadow_position', ], 'selector' => '{{WRAPPER}} .ha-member-figure img' ] ); $this->add_control( 'image_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-figure img' => 'background-color: {{VALUE}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( '_section_style_content', [ 'label' => __( 'Name, Job Title & Bio', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'content_padding', [ 'label' => __( 'Content Padding', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-member-body' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( '_heading_title', [ 'type' => Controls_Manager::HEADING, 'label' => __( 'Name', 'happy-elementor-addons' ), 'separator' => 'before', ] ); $this->add_responsive_control( 'title_spacing', [ 'label' => __( 'Bottom Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-name' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'title_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-name' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'selector' => '{{WRAPPER}} .ha-member-name', 'scheme' => Scheme_Typography::TYPOGRAPHY_2, ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'title_text_shadow', 'selector' => '{{WRAPPER}} .ha-member-name', ] ); $this->add_control( '_heading_job_title', [ 'type' => Controls_Manager::HEADING, 'label' => __( 'Job Title', 'happy-elementor-addons' ), 'separator' => 'before' ] ); $this->add_responsive_control( 'job_title_spacing', [ 'label' => __( 'Bottom Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-position' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'job_title_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-position' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'job_title_typography', 'selector' => '{{WRAPPER}} .ha-member-position', 'scheme' => Scheme_Typography::TYPOGRAPHY_3, ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'job_title_text_shadow', 'selector' => '{{WRAPPER}} .ha-member-position', ] ); $this->add_control( '_heading_bio', [ 'type' => Controls_Manager::HEADING, 'label' => __( 'Short Bio', 'happy-elementor-addons' ), 'separator' => 'before' ] ); $this->add_responsive_control( 'bio_spacing', [ 'label' => __( 'Bottom Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-bio' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'bio_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-bio' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'bio_typography', 'selector' => '{{WRAPPER}} .ha-member-bio', 'scheme' => Scheme_Typography::TYPOGRAPHY_3, ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'bio_text_shadow', 'selector' => '{{WRAPPER}} .ha-member-bio', ] ); $this->end_controls_section(); $this->start_controls_section( '_section_style_social', [ 'label' => __( 'Social Icons', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'links_spacing', [ 'label' => __( 'Right Spacing', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-links > a:not(:last-child)' => 'margin-right: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'links_padding', [ 'label' => __( 'Padding', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-links > a' => 'padding: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'links_icon_size', [ 'label' => __( 'Icon Size', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .ha-member-links > a' => 'font-size: {{SIZE}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'links_border', 'selector' => '{{WRAPPER}} .ha-member-links > a' ] ); $this->add_responsive_control( 'links_border_radius', [ 'label' => __( 'Border Radius', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-member-links > a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->start_controls_tabs( '_tab_links_colors' ); $this->start_controls_tab( '_tab_links_normal', [ 'label' => __( 'Normal', 'happy-elementor-addons' ), ] ); $this->add_control( 'links_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > a' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'links_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > a' => 'background-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( '_tab_links_hover', [ 'label' => __( 'Hover', 'happy-elementor-addons' ), ] ); $this->add_control( 'links_hover_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > a:hover, {{WRAPPER}} .ha-member-links > a:focus' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'links_hover_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > a:hover, {{WRAPPER}} .ha-member-links > a:focus' => 'background-color: {{VALUE}}', ], ] ); $this->add_control( 'links_hover_border_color', [ 'label' => __( 'Border Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-member-links > a:hover, {{WRAPPER}} .ha-member-links > a:focus' => 'border-color: {{VALUE}};', ], 'condition' => [ 'links_border_border!' => '', ] ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( '_section_style_button', [ 'label' => __( 'Details Button', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'button_margin', [ 'label' => __( 'Margin', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-btn' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'button_padding', [ 'label' => __( 'Padding', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-btn' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'button_typography', 'selector' => '{{WRAPPER}} .ha-btn', 'scheme' => Scheme_Typography::TYPOGRAPHY_4, ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'button_border', 'selector' => '{{WRAPPER}} .ha-btn', ] ); $this->add_control( 'button_border_radius', [ 'label' => __( 'Border Radius', 'happy-elementor-addons' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ha-btn' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'button_box_shadow', 'selector' => '{{WRAPPER}} .ha-btn', ] ); $this->add_control( 'hr', [ 'type' => Controls_Manager::DIVIDER, 'style' => 'thick', ] ); $this->start_controls_tabs( '_tabs_button' ); $this->start_controls_tab( '_tab_button_normal', [ 'label' => __( 'Normal', 'happy-elementor-addons' ), ] ); $this->add_control( 'button_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ha-btn' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'button_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-btn' => 'background-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( '_tab_button_hover', [ 'label' => __( 'Hover', 'happy-elementor-addons' ), ] ); $this->add_control( 'button_hover_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-btn:hover, {{WRAPPER}} .ha-btn:focus' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'button_hover_bg_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ha-btn:hover, {{WRAPPER}} .ha-btn:focus' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'button_hover_border_color', [ 'label' => __( 'Border Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'condition' => [ 'button_border_border!' => '', ], 'selectors' => [ '{{WRAPPER}} .ha-btn:hover, {{WRAPPER}} .ha-btn:focus' => 'border-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $button_position = ! empty( $settings['button_position'] ) ? $settings['button_position'] : 'after'; $show_button = false; if ( ! empty( $settings['show_details_button'] ) && $settings['show_details_button'] === 'yes' ) { $show_button = true; } $this->add_inline_editing_attributes( 'title', 'basic' ); $this->add_render_attribute( 'title', 'class', 'ha-member-name' ); $this->add_inline_editing_attributes( 'job_title', 'basic' ); $this->add_render_attribute( 'job_title', 'class', 'ha-member-position' ); $this->add_inline_editing_attributes( 'bio', 'intermediate' ); $this->add_render_attribute( 'bio', 'class', 'ha-member-bio' ); ?> <?php if ( $settings['image']['url'] || $settings['image']['id'] ) : $settings['hover_animation'] = 'disable-animation'; // hack to prevent image hover animation ?> <figure class="ha-member-figure"> <?php echo Group_Control_Image_Size::get_attachment_image_html( $settings, 'thumbnail', 'image' ); ?> </figure> <?php endif; ?> <div class="ha-member-body"> <?php if ( $settings['title'] ) : printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings['title_tag'] ), $this->get_render_attribute_string( 'title' ), ha_kses_basic( $settings['title'] ) ); endif; ?> <?php if ( $settings['job_title' ] ) : ?> <div <?php $this->print_render_attribute_string( 'job_title' ); ?>><?php echo ha_kses_basic( $settings['job_title' ] ); ?></div> <?php endif; ?> <?php if ( $settings['bio'] ) : ?> <div <?php $this->print_render_attribute_string( 'bio' ); ?>> <p><?php echo ha_kses_intermediate( $settings['bio'] ); ?></p> </div> <?php endif; ?> <?php if ( $show_button && $button_position === 'before' ) { $this->render_icon_button( [ 'new_icon' => 'button_icon', 'old_icon' => '' ] ); } ?> <?php if ( $settings['show_profiles' ] && is_array( $settings['profiles' ] ) ) : ?> <div class="ha-member-links"> <?php foreach ( $settings['profiles'] as $profile ) : $icon = $profile['name']; $url = $profile['link']['url']; if ($profile['name'] === 'website') { $icon = 'globe'; } elseif ($profile['name'] === 'email') { $icon = 'envelope'; $url = 'mailto:' . antispambot( $profile['email'] ); } printf( '<a target="_blank" rel="noopener" href="%s" class="elementor-repeater-item-%s"><i class="fa fa-%s" aria-hidden="true"></i></a>', $url, esc_attr( $profile['_id'] ), esc_attr( $icon ) ); endforeach; ?> </div> <?php endif; ?> <?php if ( $show_button && $button_position === 'after' ) { $this->render_icon_button( [ 'new_icon' => 'button_icon', 'old_icon' => '' ] ); } ?> </div> <?php } public function _content_template() { return ''; ?> <# view.addInlineEditingAttributes( 'title', 'basic' ); view.addRenderAttribute( 'title', 'class', 'ha-member-name' ); view.addInlineEditingAttributes( 'job_title', 'basic' ); view.addRenderAttribute( 'job_title', 'class', 'ha-member-position' ); view.addInlineEditingAttributes( 'bio', 'intermediate' ); view.addRenderAttribute( 'bio', 'class', 'ha-member-bio' ); if ( settings.image.url || settings.image.id ) { var image = { id: settings.image.id, url: settings.image.url, size: settings.thumbnail_size, dimension: settings.thumbnail_custom_dimension, model: view.getEditModel() }; var image_url = elementor.imagesManager.getImageUrl( image ); #> <figure class="ha-member-figure"> <img src="{{ image_url }}"> </figure> <# } #> <div class="ha-member-body"> <# if (settings.title) { #> <{{ settings.title_tag }} {{{ view.getRenderAttributeString( 'title' ) }}}>{{ settings.title }}</{{ settings.title_tag }}> <# } #> <# if (settings.job_title) { #> <div {{{ view.getRenderAttributeString( 'job_title' ) }}}>{{ settings.job_title }}</div> <# } #> <# if (settings.bio) { #> <div {{{ view.getRenderAttributeString( 'bio' ) }}}> <p>{{{ settings.bio }}}</p> </div> <# } #> <# if ( !_.isUndefined( settings['button_position'] ) && settings['button_position'] === 'before' ) { print( ha.getButtonWithIcon( view, {newIcon: 'button_icon', oldIcon: ''} ) ); } #> <# if (settings.show_profiles && _.isArray(settings.profiles)) { #> <div class="ha-member-links"> <# _.each(settings.profiles, function(profile, index) { var icon = profile.name, url = profile.link.url, linkKey = view.getRepeaterSettingKey( 'profile', 'profiles', index); if (profile.name === 'website') { icon = 'globe'; } else if (profile.name === 'email') { icon = 'envelope' url = 'mailto:' + profile.email; } view.addRenderAttribute( linkKey, 'class', 'elementor-repeater-item-' + profile._id ); view.addRenderAttribute( linkKey, 'href', url ); #> <a {{{view.getRenderAttributeString( linkKey )}}}><i class="fa fa-{{{icon}}}"></i></a> <# }); #> </div> <# } #> <# if ( !_.isUndefined( settings['button_position'] ) && settings['button_position'] === 'after' ) { print( ha.getButtonWithIcon( view, {newIcon: 'button_icon', oldIcon: ''} ) ); } #> </div> <?php } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件