506 lines
12 KiB
PHP
506 lines
12 KiB
PHP
|
<?php
|
||
|
namespace Elementor;
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit; // Exit if accessed directly.
|
||
|
}
|
||
|
|
||
|
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
|
||
|
|
||
|
/**
|
||
|
* Elementor icon widget.
|
||
|
*
|
||
|
* Elementor widget that displays an icon from over 600+ icons.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
class Widget_Icon extends Widget_Base {
|
||
|
|
||
|
/**
|
||
|
* Get widget name.
|
||
|
*
|
||
|
* Retrieve icon widget name.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget name.
|
||
|
*/
|
||
|
public function get_name() {
|
||
|
return 'icon';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget title.
|
||
|
*
|
||
|
* Retrieve icon widget title.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget title.
|
||
|
*/
|
||
|
public function get_title() {
|
||
|
return esc_html__( 'Icon', 'elementor' );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget icon.
|
||
|
*
|
||
|
* Retrieve icon widget icon.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget icon.
|
||
|
*/
|
||
|
public function get_icon() {
|
||
|
return 'eicon-favorite';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget categories.
|
||
|
*
|
||
|
* Retrieve the list of categories the icon widget belongs to.
|
||
|
*
|
||
|
* Used to determine where to display the widget in the editor.
|
||
|
*
|
||
|
* @since 2.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return array Widget categories.
|
||
|
*/
|
||
|
public function get_categories() {
|
||
|
return [ 'basic' ];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget keywords.
|
||
|
*
|
||
|
* Retrieve the list of keywords the widget belongs to.
|
||
|
*
|
||
|
* @since 2.1.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return array Widget keywords.
|
||
|
*/
|
||
|
public function get_keywords() {
|
||
|
return [ 'icon' ];
|
||
|
}
|
||
|
|
||
|
protected function is_dynamic_content(): bool {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register icon widget controls.
|
||
|
*
|
||
|
* Adds different input fields to allow the user to change and customize the widget settings.
|
||
|
*
|
||
|
* @since 3.1.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function register_controls() {
|
||
|
$this->start_controls_section(
|
||
|
'section_icon',
|
||
|
[
|
||
|
'label' => esc_html__( 'Icon', 'elementor' ),
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'selected_icon',
|
||
|
[
|
||
|
'label' => esc_html__( 'Icon', 'elementor' ),
|
||
|
'type' => Controls_Manager::ICONS,
|
||
|
'fa4compatibility' => 'icon',
|
||
|
'default' => [
|
||
|
'value' => 'fas fa-star',
|
||
|
'library' => 'fa-solid',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'view',
|
||
|
[
|
||
|
'label' => esc_html__( 'View', 'elementor' ),
|
||
|
'type' => Controls_Manager::SELECT,
|
||
|
'options' => [
|
||
|
'default' => esc_html__( 'Default', 'elementor' ),
|
||
|
'stacked' => esc_html__( 'Stacked', 'elementor' ),
|
||
|
'framed' => esc_html__( 'Framed', 'elementor' ),
|
||
|
],
|
||
|
'default' => 'default',
|
||
|
'prefix_class' => 'elementor-view-',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'shape',
|
||
|
[
|
||
|
'label' => esc_html__( 'Shape', 'elementor' ),
|
||
|
'type' => Controls_Manager::SELECT,
|
||
|
'options' => [
|
||
|
'circle' => esc_html__( 'Circle', 'elementor' ),
|
||
|
'square' => esc_html__( 'Square', 'elementor' ),
|
||
|
],
|
||
|
'default' => 'circle',
|
||
|
'condition' => [
|
||
|
'view!' => 'default',
|
||
|
],
|
||
|
'prefix_class' => 'elementor-shape-',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'link',
|
||
|
[
|
||
|
'label' => esc_html__( 'Link', 'elementor' ),
|
||
|
'type' => Controls_Manager::URL,
|
||
|
'dynamic' => [
|
||
|
'active' => true,
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_section();
|
||
|
|
||
|
$this->start_controls_section(
|
||
|
'section_style_icon',
|
||
|
[
|
||
|
'label' => esc_html__( 'Icon', 'elementor' ),
|
||
|
'tab' => Controls_Manager::TAB_STYLE,
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_responsive_control(
|
||
|
'align',
|
||
|
[
|
||
|
'label' => esc_html__( 'Alignment', 'elementor' ),
|
||
|
'type' => Controls_Manager::CHOOSE,
|
||
|
'options' => [
|
||
|
'left' => [
|
||
|
'title' => esc_html__( 'Left', 'elementor' ),
|
||
|
'icon' => 'eicon-text-align-left',
|
||
|
],
|
||
|
'center' => [
|
||
|
'title' => esc_html__( 'Center', 'elementor' ),
|
||
|
'icon' => 'eicon-text-align-center',
|
||
|
],
|
||
|
'right' => [
|
||
|
'title' => esc_html__( 'Right', 'elementor' ),
|
||
|
'icon' => 'eicon-text-align-right',
|
||
|
],
|
||
|
],
|
||
|
'default' => 'center',
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon-wrapper' => 'text-align: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->start_controls_tabs( 'icon_colors' );
|
||
|
|
||
|
$this->start_controls_tab(
|
||
|
'icon_colors_normal',
|
||
|
[
|
||
|
'label' => esc_html__( 'Normal', 'elementor' ),
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'primary_color',
|
||
|
[
|
||
|
'label' => esc_html__( 'Primary Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'default' => '',
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon' => 'background-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon, {{WRAPPER}}.elementor-view-default .elementor-icon' => 'color: {{VALUE}}; border-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon, {{WRAPPER}}.elementor-view-default .elementor-icon svg' => 'fill: {{VALUE}};',
|
||
|
],
|
||
|
'global' => [
|
||
|
'default' => Global_Colors::COLOR_PRIMARY,
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'secondary_color',
|
||
|
[
|
||
|
'label' => esc_html__( 'Secondary Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'default' => '',
|
||
|
'condition' => [
|
||
|
'view!' => 'default',
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon' => 'background-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon' => 'color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon svg' => 'fill: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_tab();
|
||
|
|
||
|
$this->start_controls_tab(
|
||
|
'icon_colors_hover',
|
||
|
[
|
||
|
'label' => esc_html__( 'Hover', 'elementor' ),
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'hover_primary_color',
|
||
|
[
|
||
|
'label' => esc_html__( 'Primary Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'default' => '',
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon:hover' => 'background-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon:hover, {{WRAPPER}}.elementor-view-default .elementor-icon:hover' => 'color: {{VALUE}}; border-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon:hover, {{WRAPPER}}.elementor-view-default .elementor-icon:hover svg' => 'fill: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'hover_secondary_color',
|
||
|
[
|
||
|
'label' => esc_html__( 'Secondary Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'default' => '',
|
||
|
'condition' => [
|
||
|
'view!' => 'default',
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}}.elementor-view-framed .elementor-icon:hover' => 'background-color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon:hover' => 'color: {{VALUE}};',
|
||
|
'{{WRAPPER}}.elementor-view-stacked .elementor-icon:hover svg' => 'fill: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'hover_animation',
|
||
|
[
|
||
|
'label' => esc_html__( 'Hover Animation', 'elementor' ),
|
||
|
'type' => Controls_Manager::HOVER_ANIMATION,
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_tab();
|
||
|
|
||
|
$this->end_controls_tabs();
|
||
|
|
||
|
$this->add_responsive_control(
|
||
|
'size',
|
||
|
[
|
||
|
'label' => esc_html__( 'Size', 'elementor' ),
|
||
|
'type' => Controls_Manager::SLIDER,
|
||
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
||
|
'range' => [
|
||
|
'px' => [
|
||
|
'min' => 6,
|
||
|
'max' => 300,
|
||
|
],
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon' => 'font-size: {{SIZE}}{{UNIT}};',
|
||
|
'{{WRAPPER}} .elementor-icon svg' => 'height: {{SIZE}}{{UNIT}};',
|
||
|
],
|
||
|
'separator' => 'before',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'fit_to_size',
|
||
|
[
|
||
|
'label' => esc_html__( 'Fit to Size', 'elementor' ),
|
||
|
'type' => Controls_Manager::SWITCHER,
|
||
|
'description' => 'Avoid gaps around icons when width and height aren\'t equal',
|
||
|
'label_off' => esc_html__( 'Off', 'elementor' ),
|
||
|
'label_on' => esc_html__( 'On', 'elementor' ),
|
||
|
'condition' => [
|
||
|
'selected_icon[library]' => 'svg',
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon-wrapper svg' => 'width: 100%;',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'icon_padding',
|
||
|
[
|
||
|
'label' => esc_html__( 'Padding', 'elementor' ),
|
||
|
'type' => Controls_Manager::SLIDER,
|
||
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon' => 'padding: {{SIZE}}{{UNIT}};',
|
||
|
],
|
||
|
'range' => [
|
||
|
'px' => [
|
||
|
'max' => 50,
|
||
|
],
|
||
|
'em' => [
|
||
|
'min' => 0,
|
||
|
'max' => 5,
|
||
|
],
|
||
|
'rem' => [
|
||
|
'min' => 0,
|
||
|
'max' => 5,
|
||
|
],
|
||
|
],
|
||
|
'condition' => [
|
||
|
'view!' => 'default',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_responsive_control(
|
||
|
'rotate',
|
||
|
[
|
||
|
'label' => esc_html__( 'Rotate', 'elementor' ),
|
||
|
'type' => Controls_Manager::SLIDER,
|
||
|
'size_units' => [ 'deg', 'grad', 'rad', 'turn', 'custom' ],
|
||
|
'default' => [
|
||
|
'unit' => 'deg',
|
||
|
],
|
||
|
'tablet_default' => [
|
||
|
'unit' => 'deg',
|
||
|
],
|
||
|
'mobile_default' => [
|
||
|
'unit' => 'deg',
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon i, {{WRAPPER}} .elementor-icon svg' => 'transform: rotate({{SIZE}}{{UNIT}});',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'border_width',
|
||
|
[
|
||
|
'label' => esc_html__( 'Border Width', 'elementor' ),
|
||
|
'type' => Controls_Manager::DIMENSIONS,
|
||
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
||
|
],
|
||
|
'condition' => [
|
||
|
'view' => 'framed',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_responsive_control(
|
||
|
'border_radius',
|
||
|
[
|
||
|
'label' => esc_html__( 'Border Radius', 'elementor' ),
|
||
|
'type' => Controls_Manager::DIMENSIONS,
|
||
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
||
|
],
|
||
|
'condition' => [
|
||
|
'view!' => 'default',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_section();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render icon widget output on the frontend.
|
||
|
*
|
||
|
* Written in PHP and used to generate the final HTML.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function render() {
|
||
|
$settings = $this->get_settings_for_display();
|
||
|
|
||
|
if ( empty( $settings['selected_icon']['value'] ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$this->add_render_attribute( 'wrapper', 'class', 'elementor-icon-wrapper' );
|
||
|
|
||
|
$this->add_render_attribute( 'icon-wrapper', 'class', 'elementor-icon' );
|
||
|
|
||
|
if ( ! empty( $settings['hover_animation'] ) ) {
|
||
|
$this->add_render_attribute( 'icon-wrapper', 'class', 'elementor-animation-' . $settings['hover_animation'] );
|
||
|
}
|
||
|
|
||
|
$icon_tag = 'div';
|
||
|
|
||
|
if ( ! empty( $settings['link']['url'] ) ) {
|
||
|
$this->add_link_attributes( 'icon-wrapper', $settings['link'] );
|
||
|
|
||
|
$icon_tag = 'a';
|
||
|
}
|
||
|
|
||
|
if ( empty( $settings['icon'] ) && ! Icons_Manager::is_migration_allowed() ) {
|
||
|
// add old default
|
||
|
$settings['icon'] = 'fa fa-star';
|
||
|
}
|
||
|
|
||
|
if ( ! empty( $settings['icon'] ) ) {
|
||
|
$this->add_render_attribute( 'icon', 'class', $settings['icon'] );
|
||
|
$this->add_render_attribute( 'icon', 'aria-hidden', 'true' );
|
||
|
}
|
||
|
|
||
|
$migrated = isset( $settings['__fa4_migrated']['selected_icon'] );
|
||
|
$is_new = empty( $settings['icon'] ) && Icons_Manager::is_migration_allowed();
|
||
|
|
||
|
?>
|
||
|
<div <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
|
||
|
<<?php Utils::print_unescaped_internal_string( $icon_tag . ' ' . $this->get_render_attribute_string( 'icon-wrapper' ) ); ?>>
|
||
|
<?php if ( $is_new || $migrated ) :
|
||
|
Icons_Manager::render_icon( $settings['selected_icon'], [ 'aria-hidden' => 'true' ] );
|
||
|
else : ?>
|
||
|
<i <?php $this->print_render_attribute_string( 'icon' ); ?>></i>
|
||
|
<?php endif; ?>
|
||
|
</<?php Utils::print_unescaped_internal_string( $icon_tag ); ?>>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render icon widget output in the editor.
|
||
|
*
|
||
|
* Written as a Backbone JavaScript template and used to generate the live preview.
|
||
|
*
|
||
|
* @since 2.9.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function content_template() {
|
||
|
?>
|
||
|
<#
|
||
|
if ( '' === settings.selected_icon.value ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const link = settings.link.url ? 'href="' + elementor.helpers.sanitizeUrl( settings.link.url ) + '"' : '',
|
||
|
iconHTML = elementor.helpers.renderIcon( view, settings.selected_icon, { 'aria-hidden': true }, 'i' , 'object' ),
|
||
|
migrated = elementor.helpers.isIconMigrated( settings, 'selected_icon' ),
|
||
|
iconTag = link ? 'a' : 'div';
|
||
|
#>
|
||
|
<div class="elementor-icon-wrapper">
|
||
|
<{{{ iconTag }}} class="elementor-icon elementor-animation-{{ settings.hover_animation }}" {{{ link }}}>
|
||
|
<# if ( iconHTML && iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
||
|
{{{ iconHTML.value }}}
|
||
|
<# } else { #>
|
||
|
<i class="{{ settings.icon }}" aria-hidden="true"></i>
|
||
|
<# } #>
|
||
|
</{{{ iconTag }}}>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
}
|