PluginProbe
Elementor Website Builder – more than just a page builder / 4.0.0-dev3
Elementor Website Builder – more than just a page builder v4.0.0-dev3
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
elementor / modules / atomic-widgets / elements / atomic-svg / atomic-svg.php

atomic-svg.php in Elementor Website Builder – more than just a page builder 4.0.0-dev3, at modules/atomic-widgets/elements/atomic-svg/atomic-svg.php

231 lines 6.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Svg;
3
4 use Elementor\Modules\AtomicWidgets\Controls\Section;
5 use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control;
6 use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
7 use Elementor\Modules\AtomicWidgets\Elements\Base\Atomic_Widget_Base;
8 use Elementor\Core\Utils\Svg\Svg_Sanitizer;
9 use Elementor\Modules\AtomicWidgets\Controls\Types\Svg_Control;
10 use Elementor\Modules\AtomicWidgets\PropTypes\Image_Src_Prop_Type;
11 use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
12 use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
13 use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
14 use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
15 use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
16 use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
17 use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
18 use Elementor\Modules\Components\PropTypes\Overridable_Prop_Type;
19 use Elementor\Utils;
20
21 if ( ! defined( 'ABSPATH' ) ) {
22 exit; // Exit if accessed directly.
23 }
24
25 class Atomic_Svg extends Atomic_Widget_Base {
26 const BASE_STYLE_KEY = 'base';
27 const DEFAULT_SVG = 'images/default-svg.svg';
28 const DEFAULT_SVG_PATH = ELEMENTOR_ASSETS_PATH . self::DEFAULT_SVG;
29 const DEFAULT_SVG_URL = ELEMENTOR_ASSETS_URL . self::DEFAULT_SVG;
30
31 public static $widget_description = 'Display an SVG image with customizable styles and link options.';
32
33 public static function get_element_type(): string {
34 return 'e-svg';
35 }
36
37 public function get_title() {
38 return esc_html__( 'SVG', 'elementor' );
39 }
40
41 public function get_keywords() {
42 return [ 'ato', 'atom', 'atoms', 'atomic' ];
43 }
44
45 public function get_icon() {
46 return 'eicon-svg';
47 }
48
49 protected static function define_props_schema(): array {
50 return [
51 'classes' => Classes_Prop_Type::make()->default( [] ),
52 'svg' => Image_Src_Prop_Type::make()
53 ->default_url( static::DEFAULT_SVG_URL )
54 ->meta( 'is_svg', true ),
55 'link' => Link_Prop_Type::make(),
56 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ),
57 ];
58 }
59
60 protected function define_atomic_controls(): array {
61 return [
62 Section::make()
63 ->set_label( esc_html__( 'Content', 'elementor' ) )
64 ->set_items( [
65 Svg_Control::bind_to( 'svg' )
66 ->set_label( __( 'SVG', 'elementor' ) ),
67 ] ),
68 Section::make()
69 ->set_label( __( 'Settings', 'elementor' ) )
70 ->set_id( 'settings' )
71 ->set_items( $this->get_settings_controls() ),
72 ];
73 }
74
75 protected function get_settings_controls(): array {
76 return [
77 Link_Control::bind_to( 'link' )
78 ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) )
79 ->set_label( __( 'Link', 'elementor' ) ),
80 Text_Control::bind_to( '_cssid' )
81 ->set_label( __( 'ID', 'elementor' ) )
82 ->set_meta( $this->get_css_id_control_meta() ),
83 ];
84 }
85
86 protected function define_base_styles(): array {
87 $display_value = String_Prop_Type::generate( 'inline-block' );
88
89 $size = Size_Prop_Type::generate( [
90 'size' => 65,
91 'unit' => 'px',
92 ] );
93
94 return [
95 self::BASE_STYLE_KEY => Style_Definition::make()
96 ->add_variant(
97 Style_Variant::make()
98 ->add_prop( 'display', $display_value )
99 ->add_prop( 'width', $size )
100 ->add_prop( 'height', $size )
101 ),
102 ];
103 }
104
105 protected function render() {
106 $settings = $this->get_atomic_settings();
107
108 $svg = $this->get_svg_content( $settings );
109
110 if ( ! $svg ) {
111 return;
112 }
113
114 $svg = new \WP_HTML_Tag_Processor( $svg );
115
116 if ( ! $svg->next_tag( 'svg' ) ) {
117 return;
118 }
119
120 $svg->set_attribute( 'fill', 'currentColor' );
121 $svg->set_attribute( 'data-interaction-id', $this->get_interaction_id() );
122
123 $this->add_svg_style( $svg, 'width: 100%; height: 100%; overflow: unset;' );
124
125 $svg_html = ( new Svg_Sanitizer() )->sanitize( $svg->get_updated_html() );
126
127 $classes = array_filter( array_merge(
128 [ self::BASE_STYLE_KEY => $this->get_base_styles_dictionary()[ self::BASE_STYLE_KEY ] ],
129 $settings['classes']
130 ) );
131
132 $classes_string = implode( ' ', $classes );
133
134 $cssid_attribute = ! empty( $settings['_cssid'] ) ? 'id="' . esc_attr( $settings['_cssid'] ) . '"' : '';
135
136 $all_attributes = trim( $cssid_attribute . ' ' . $settings['attributes'] );
137
138 $data_attributes_string = sprintf(
139 'data-interaction-id="%s"',
140 esc_attr( $this->get_interaction_id() )
141 );
142
143 $attributes_string = trim( $data_attributes_string . ' ' . $all_attributes );
144
145 if ( isset( $settings['link'] ) && ! empty( $settings['link']['href'] ) ) {
146 $html_tag = Utils::validate_html_tag( $settings['link']['tag'] ?? 'a' );
147 $link_attributes = $this->get_link_attributes( $settings['link'], true );
148 $link_attribute_key = $link_attributes['key'];
149 $link_destination = $link_attributes[ $link_attribute_key ];
150
151 $svg_html = sprintf(
152 '<%s %s="%s" target="%s" class="%s" %s>%s</%s>',
153 $html_tag,
154 $link_attribute_key,
155 $link_destination,
156 esc_attr( $settings['link']['target'] ),
157 esc_attr( $classes_string ),
158 $attributes_string,
159 $svg_html,
160 $html_tag
161 );
162 } else {
163 $svg_html = sprintf( '<div class="%s" %s>%s</div>', esc_attr( $classes_string ), $attributes_string, $svg_html );
164 }
165
166 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
167 echo $svg_html;
168 }
169
170 private function get_svg_content( $settings ) {
171 $svg_data = $settings['svg'] ?? null;
172
173 if ( ! $svg_data ) {
174 return $this->get_default_svg_content();
175 }
176
177 if ( is_string( $svg_data ) ) {
178 return $this->fetch_svg_from_url( $svg_data );
179 }
180
181 if ( isset( $svg_data['id'] ) ) {
182 $content = Utils::file_get_contents(
183 get_attached_file( $svg_data['id'] )
184 );
185
186 if ( $content ) {
187 return $content;
188 }
189 }
190
191 if ( isset( $svg_data['url'] ) && static::DEFAULT_SVG_URL !== $svg_data['url'] ) {
192 return $this->fetch_svg_from_url( $svg_data['url'] );
193 }
194
195 return $this->get_default_svg_content();
196 }
197
198 private function fetch_svg_from_url( string $url ) {
199 if ( empty( $url ) || static::DEFAULT_SVG_URL === $url ) {
200 return $this->get_default_svg_content();
201 }
202
203 $content = wp_safe_remote_get( $url );
204
205 if ( ! is_wp_error( $content ) ) {
206 return $content['body'];
207 }
208
209 return $this->get_default_svg_content();
210 }
211
212 private function get_default_svg_content() {
213 $content = Utils::file_get_contents( static::DEFAULT_SVG_PATH );
214
215 return $content ? $content : null;
216 }
217
218 private function add_svg_style( &$svg, $new_style ) {
219 $svg_style = $svg->get_attribute( 'style' );
220 $svg_style = trim( (string) $svg_style );
221
222 if ( empty( $svg_style ) ) {
223 $svg_style = $new_style;
224 } else {
225 $svg_style = rtrim( $svg_style, ';' ) . '; ' . $new_style;
226 }
227
228 $svg->set_attribute( 'style', $svg_style );
229 }
230 }
231