PluginProbe
Elementor Website Builder – more than just a page builder / 3.9.2
Elementor Website Builder – more than just a page builder v3.9.2
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/widgets/social-icons.php +27 -123 4.2.43.9.2 View file →
@@ -69,31 +69,9 @@
69 69 public function get_keywords() {
70 70 return [ 'social', 'icon', 'link' ];
71 71 }
72 72
73 - protected function is_dynamic_content(): bool {
74 - return false;
75 - }
76 -
77 73 /**
78 - * Get style dependencies.
79 - *
80 - * Retrieve the list of style dependencies the widget requires.
81 - *
82 - * @since 3.24.0
83 - * @access public
84 - *
85 - * @return array Widget style dependencies.
86 - */
87 - public function get_style_depends(): array {
88 - return [ 'widget-social-icons', 'e-apple-webkit' ];
89 - }
90 -
91 - public function has_widget_inner_wrapper(): bool {
92 - return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' );
93 - }
94 -
95 - /**
96 74 * Register social icons widget controls.
97 75 *
98 76 * Adds different input fields to allow the user to change and customize the widget settings.
99 77 *
@@ -160,9 +138,8 @@
160 138 'stack-overflow',
161 139 'steam',
162 140 'telegram',
163 141 'thumb-tack',
164 - 'threads',
165 142 'tripadvisor',
166 143 'tumblr',
167 144 'twitch',
168 145 'twitter',
@@ -173,9 +150,8 @@
173 150 'weixin',
174 151 'whatsapp',
175 152 'wordpress',
176 153 'xing',
177 - 'x-twitter',
178 154 'yelp',
179 155 'youtube',
180 156 '500px',
181 157 ],
@@ -198,8 +174,9 @@
198 174 ],
199 175 'dynamic' => [
200 176 'active' => true,
201 177 ],
178 + 'placeholder' => esc_html__( 'https://your-link.com', 'elementor' ),
202 179 ]
203 180 );
204 181
205 182 $repeater->add_control(
@@ -258,9 +235,9 @@
258 235 ],
259 236 ],
260 237 [
261 238 'social_icon' => [
262 - 'value' => 'fab fa-x-twitter',
239 + 'value' => 'fab fa-twitter',
263 240 'library' => 'fa-brands',
264 241 ],
265 242 ],
266 243 [
@@ -280,10 +257,10 @@
280 257 'label' => esc_html__( 'Shape', 'elementor' ),
281 258 'type' => Controls_Manager::SELECT,
282 259 'default' => 'rounded',
283 260 'options' => [
261 + 'rounded' => esc_html__( 'Rounded', 'elementor' ),
284 262 'square' => esc_html__( 'Square', 'elementor' ),
285 - 'rounded' => esc_html__( 'Rounded', 'elementor' ),
286 263 'circle' => esc_html__( 'Circle', 'elementor' ),
287 264 ],
288 265 'prefix_class' => 'elementor-shape-',
289 266 ]
@@ -310,11 +287,10 @@
310 287 ],
311 288 ]
312 289 );
313 290
314 - $align_selector = Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' ) && ! $this->has_widget_inner_wrapper()
315 - ? '{{WRAPPER}}'
316 - : '{{WRAPPER}} .elementor-widget-container';
291 + $start = is_rtl() ? 'end' : 'start';
292 + $end = is_rtl() ? 'start' : 'end';
317 293
318 294 $this->add_responsive_control(
319 295 'align',
320 296 [
@@ -336,13 +312,22 @@
336 312 ],
337 313 'prefix_class' => 'e-grid-align%s-',
338 314 'default' => 'center',
339 315 'selectors' => [
340 - $align_selector => 'text-align: {{VALUE}}',
316 + '{{WRAPPER}} .elementor-widget-container' => 'text-align: {{VALUE}}',
341 317 ],
342 318 ]
343 319 );
344 320
321 + $this->add_control(
322 + 'view',
323 + [
324 + 'label' => esc_html__( 'View', 'elementor' ),
325 + 'type' => Controls_Manager::HIDDEN,
326 + 'default' => 'traditional',
327 + ]
328 + );
329 +
345 330 $this->end_controls_section();
346 331
347 332 $this->start_controls_section(
348 333 'section_social_style',
@@ -398,10 +383,8 @@
398 383 'icon_size',
399 384 [
400 385 'label' => esc_html__( 'Size', 'elementor' ),
401 386 'type' => Controls_Manager::SLIDER,
402 - // The `%' and `em` units are not supported as the widget implements icons differently then other icons.
403 - 'size_units' => [ 'px', 'rem', 'vw', 'custom' ],
404 387 'range' => [
405 388 'px' => [
406 389 'min' => 6,
407 390 'max' => 300,
@@ -417,10 +400,8 @@
417 400 'icon_padding',
418 401 [
419 402 'label' => esc_html__( 'Padding', 'elementor' ),
420 403 'type' => Controls_Manager::SLIDER,
421 - // The `%' unit is not supported.
422 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
423 404 'selectors' => [
424 405 '{{WRAPPER}} .elementor-social-icon' => '--icon-padding: {{SIZE}}{{UNIT}}',
425 406 ],
426 407 'default' => [
@@ -432,19 +413,12 @@
432 413 'mobile_default' => [
433 414 'unit' => 'em',
434 415 ],
435 416 'range' => [
436 - 'px' => [
437 - 'max' => 50,
438 - ],
439 417 'em' => [
440 418 'min' => 0,
441 419 'max' => 5,
442 420 ],
443 - 'rem' => [
444 - 'min' => 0,
445 - 'max' => 5,
446 - ],
447 421 ],
448 422 ]
449 423 );
450 424
@@ -452,21 +426,13 @@
452 426 'icon_spacing',
453 427 [
454 428 'label' => esc_html__( 'Spacing', 'elementor' ),
455 429 'type' => Controls_Manager::SLIDER,
456 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
457 430 'range' => [
458 431 'px' => [
432 + 'min' => 0,
459 433 'max' => 100,
460 434 ],
461 - 'em' => [
462 - 'min' => 0,
463 - 'max' => 10,
464 - ],
465 - 'rem' => [
466 - 'min' => 0,
467 - 'max' => 10,
468 - ],
469 435 ],
470 436 'default' => [
471 437 'size' => 5,
472 438 ],
@@ -480,9 +446,8 @@
480 446 'row_gap',
481 447 [
482 448 'label' => esc_html__( 'Rows Gap', 'elementor' ),
483 449 'type' => Controls_Manager::SLIDER,
484 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
485 450 'default' => [
486 451 'size' => 0,
487 452 ],
488 453 'selectors' => [
@@ -504,9 +469,9 @@
504 469 'border_radius',
505 470 [
506 471 'label' => esc_html__( 'Border Radius', 'elementor' ),
507 472 'type' => Controls_Manager::DIMENSIONS,
508 - 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
473 + 'size_units' => [ 'px', '%', 'em' ],
509 474 'selectors' => [
510 475 '{{WRAPPER}} .elementor-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
511 476 ],
512 477 ]
@@ -576,8 +541,9 @@
576 541 ]
577 542 );
578 543
579 544 $this->end_controls_section();
545 +
580 546 }
581 547
582 548 /**
583 549 * Render social icons widget output on the frontend.
@@ -588,20 +554,11 @@
588 554 * @access protected
589 555 */
590 556 protected function render() {
591 557 $settings = $this->get_settings_for_display();
592 -
593 - $this->add_render_attribute( 'wrapper', 'class', [ 'elementor-social-icons-wrapper', 'elementor-grid' ] );
594 - $this->add_render_attribute( 'item_wrapper', 'class', 'elementor-grid-item' );
595 -
596 - if ( count( $settings['social_icon_list'] ) > 1 ) {
597 - $this->add_render_attribute( 'wrapper', 'role', 'list' );
598 - $this->add_render_attribute( 'item_wrapper', 'role', 'listitem' );
599 - }
600 -
601 558 $fallback_defaults = [
602 559 'fa fa-facebook',
603 - 'fa fa-x-twitter',
560 + 'fa fa-twitter',
604 561 'fa fa-google-plus',
605 562 ];
606 563
607 564 $class_animation = '';
@@ -612,9 +569,9 @@
612 569
613 570 $migration_allowed = Icons_Manager::is_migration_allowed();
614 571
615 572 ?>
616 - <div <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
573 + <div class="elementor-social-icons-wrapper elementor-grid">
617 574 <?php
618 575 foreach ( $settings['social_icon_list'] as $index => $item ) {
619 576 $migrated = isset( $item['__fa4_migrated']['social_icon'] );
620 577 $is_new = empty( $item['social'] ) && $migration_allowed;
@@ -652,16 +609,16 @@
652 609
653 610 $this->add_link_attributes( $link_key, $item['link'] );
654 611
655 612 ?>
656 - <span <?php $this->print_render_attribute_string( 'item_wrapper' ); ?>>
613 + <span class="elementor-grid-item">
657 614 <a <?php $this->print_render_attribute_string( $link_key ); ?>>
658 615 <span class="elementor-screen-only"><?php echo esc_html( ucwords( $social ) ); ?></span>
659 616 <?php
660 617 if ( $is_new || $migrated ) {
661 - Icons_Manager::render_icon( $item['social_icon'], [ 'aria-hidden' => 'true' ] );
618 + Icons_Manager::render_icon( $item['social_icon'] );
662 619 } else { ?>
663 - <i class="<?php echo esc_attr( $item['social'] ); ?>" aria-hidden="true"></i>
620 + <i class="<?php echo esc_attr( $item['social'] ); ?>"></i>
664 621 <?php } ?>
665 622 </a>
666 623 </span>
667 624 <?php } ?>
@@ -678,27 +635,17 @@
678 635 * @access protected
679 636 */
680 637 protected function content_template() {
681 638 ?>
682 - <#
683 - view.addRenderAttribute( 'wrapper', 'class', [ 'elementor-social-icons-wrapper', 'elementor-grid' ] );
684 - view.addRenderAttribute( 'item_wrapper', 'class', 'elementor-grid-item' );
685 -
686 - if ( settings.social_icon_list.length > 1 ) {
687 - view.addRenderAttribute( 'wrapper', 'role', 'list' );
688 - view.addRenderAttribute( 'item_wrapper', 'role', 'listitem' );
689 - }
690 -
691 - var iconsHTML = {};
692 - #>
693 - <div {{{ view.getRenderAttributeString( 'wrapper' ) }}}>
639 + <# var iconsHTML = {}; #>
640 + <div class="elementor-social-icons-wrapper elementor-grid">
694 641 <# _.each( settings.social_icon_list, function( item, index ) {
695 642 var link = item.link ? item.link.url : '',
696 643 migrated = elementor.helpers.isIconMigrated( item, 'social_icon' );
697 644 social = elementor.helpers.getSocialNetworkNameFromIcon( item.social_icon, item.social, false, migrated );
698 645 #>
699 - <span {{{ view.getRenderAttributeString( 'item_wrapper' ) }}}>
700 - <a class="elementor-icon elementor-social-icon elementor-social-icon-{{ social }} elementor-animation-{{ settings.hover_animation }} elementor-repeater-item-{{item._id}}" href="{{ elementor.helpers.sanitizeUrl( link ) }}">
646 + <span class="elementor-grid-item">
647 + <a class="elementor-icon elementor-social-icon elementor-social-icon-{{ social }} elementor-animation-{{ settings.hover_animation }} elementor-repeater-item-{{item._id}}" href="{{ link }}">
701 648 <span class="elementor-screen-only">{{{ social }}}</span>
702 649 <#
703 650 iconsHTML[ index ] = elementor.helpers.renderIcon( view, item.social_icon, {}, 'i', 'object' );
704 651 if ( ( ! item.social || migrated ) && iconsHTML[ index ] && iconsHTML[ index ].rendered ) { #>
@@ -711,49 +658,6 @@
711 658 </span>
712 659 <# } ); #>
713 660 </div>
714 661 <?php
715 - }
716 -
717 - public function render_markdown(): string {
718 - $settings = $this->get_settings_for_display();
719 - if ( empty( $settings['social_icon_list'] ) ) {
720 - return '';
721 - }
722 -
723 - $migration_allowed = Icons_Manager::is_migration_allowed();
724 - $links = [];
725 -
726 - foreach ( $settings['social_icon_list'] as $item ) {
727 - $url = $item['link']['url'] ?? '';
728 - if ( empty( $url ) ) {
729 - continue;
730 - }
731 -
732 - $migrated = isset( $item['__fa4_migrated']['social_icon'] );
733 - $is_new = empty( $item['social'] ) && $migration_allowed;
734 - $social = '';
735 -
736 - if ( ! empty( $item['social'] ) ) {
737 - $social = str_replace( 'fa fa-', '', $item['social'] );
738 - }
739 -
740 - if ( ( $is_new || $migrated ) && 'svg' !== ( $item['social_icon']['library'] ?? '' ) ) {
741 - $parts = explode( ' ', $item['social_icon']['value'] ?? '', 2 );
742 - $social = ! empty( $parts[1] ) ? str_replace( 'fa-', '', $parts[1] ) : '';
743 - }
744 -
745 - if ( 'svg' === ( $item['social_icon']['library'] ?? '' ) ) {
746 - $social = get_post_meta( $item['social_icon']['value']['id'] ?? 0, '_wp_attachment_image_alt', true );
747 - }
748 -
749 - $label = ucwords( str_replace( '-', ' ', $social ) );
750 - if ( empty( $label ) ) {
751 - $label = 'Link';
752 - }
753 -
754 - $links[] = '- [' . $label . '](' . esc_url( $url ) . ')';
755 - }
756 -
757 - return implode( "\n", $links );
758 662 }
759 663 }