PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.3
Elementor Website Builder – more than just a page builder v3.32.3
4.3.2 4.3.1 4.3.0 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 All 455 releases
← All changes | modules/atomic-widgets/elements/atomic-svg/atomic-svg.php +96 -20 4.2.0-beta2 → 3.32.3 View file →
@@ -2,21 +2,21 @@
2 2 namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Svg;
3 3
4 4 use Elementor\Modules\AtomicWidgets\Controls\Section;
5 5 use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control;
6 +use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
7 +use Elementor\Modules\AtomicWidgets\Elements\Atomic_Widget_Base;
8 +use Elementor\Core\Utils\Svg\Svg_Sanitizer;
6 9 use Elementor\Modules\AtomicWidgets\Controls\Types\Svg_Control;
7 -use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
8 -use Elementor\Modules\AtomicWidgets\Elements\Base\Atomic_Widget_Base;
9 -use Elementor\Modules\AtomicWidgets\Elements\Base\Has_Template;
10 +use Elementor\Modules\AtomicWidgets\PropTypes\Image_Src_Prop_Type;
10 11 use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
11 -use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
12 12 use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
13 -use Elementor\Modules\AtomicWidgets\PropTypes\Svg_Src_Prop_Type;
14 13 use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
15 14 use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
16 15 use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
17 16 use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
18 -use Elementor\Modules\Components\PropTypes\Overridable_Prop_Type;
17 +use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
18 +use Elementor\Utils;
19 19
20 20 if ( ! defined( 'ABSPATH' ) ) {
21 21 exit; // Exit if accessed directly.
22 22 }
@@ -21,17 +21,13 @@
21 21 exit; // Exit if accessed directly.
22 22 }
23 23
24 24 class Atomic_Svg extends Atomic_Widget_Base {
25 - use Has_Template;
26 -
27 25 const BASE_STYLE_KEY = 'base';
28 26 const DEFAULT_SVG = 'images/default-svg.svg';
29 27 const DEFAULT_SVG_PATH = ELEMENTOR_ASSETS_PATH . self::DEFAULT_SVG;
30 28 const DEFAULT_SVG_URL = ELEMENTOR_ASSETS_URL . self::DEFAULT_SVG;
31 29
32 - public static $widget_description = 'Display an SVG image with customizable styles and link options.';
33 -
34 30 public static function get_element_type(): string {
35 31 return 'e-svg';
36 32 }
37 33
@@ -49,11 +45,11 @@
49 45
50 46 protected static function define_props_schema(): array {
51 47 return [
52 48 'classes' => Classes_Prop_Type::make()->default( [] ),
53 - 'svg' => Svg_Src_Prop_Type::make()->default_url( static::DEFAULT_SVG_URL ),
49 + 'svg' => Image_Src_Prop_Type::make()->default_url( static::DEFAULT_SVG_URL ),
54 50 'link' => Link_Prop_Type::make(),
55 - 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ),
51 + 'attributes' => Attributes_Prop_Type::make(),
56 52 ];
57 53 }
58 54
59 55 protected function define_atomic_controls(): array {
@@ -59,9 +55,8 @@
59 55 protected function define_atomic_controls(): array {
60 56 return [
61 57 Section::make()
62 58 ->set_label( esc_html__( 'Content', 'elementor' ) )
63 - ->set_id( 'content' )
64 59 ->set_items( [
65 60 Svg_Control::bind_to( 'svg' )
66 61 ->set_label( __( 'SVG', 'elementor' ) ),
67 62 ] ),
@@ -74,9 +69,8 @@
74 69
75 70 protected function get_settings_controls(): array {
76 71 return [
77 72 Link_Control::bind_to( 'link' )
78 - ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) )
79 73 ->set_label( __( 'Link', 'elementor' ) ),
80 74 Text_Control::bind_to( '_cssid' )
81 75 ->set_label( __( 'ID', 'elementor' ) )
82 76 ->set_meta( $this->get_css_id_control_meta() ),
@@ -101,14 +95,96 @@
101 95 ),
102 96 ];
103 97 }
104 98
105 - protected function get_templates(): array {
106 - return [
107 - 'elementor/elements/atomic-svg' => __DIR__ . '/atomic-svg.html.twig',
108 - ];
99 + protected function render() {
100 + $settings = $this->get_atomic_settings();
101 +
102 + $svg = $this->get_svg_content( $settings );
103 +
104 + if ( ! $svg ) {
105 + return;
106 + }
107 +
108 + $svg = new \WP_HTML_Tag_Processor( $svg );
109 +
110 + if ( ! $svg->next_tag( 'svg' ) ) {
111 + return;
112 + }
113 +
114 + $svg->set_attribute( 'fill', 'currentColor' );
115 + $this->add_svg_style( $svg, 'width: 100%; height: 100%; overflow: unset;' );
116 +
117 + $svg_html = ( new Svg_Sanitizer() )->sanitize( $svg->get_updated_html() );
118 +
119 + $classes = array_filter( array_merge(
120 + [ self::BASE_STYLE_KEY => $this->get_base_styles_dictionary()[ self::BASE_STYLE_KEY ] ],
121 + $settings['classes']
122 + ) );
123 +
124 + $classes_string = implode( ' ', $classes );
125 +
126 + $cssid_attribute = ! empty( $settings['_cssid'] ) ? 'id="' . esc_attr( $settings['_cssid'] ) . '"' : '';
127 +
128 + $all_attributes = trim( $cssid_attribute . ' ' . $settings['attributes'] );
129 +
130 + if ( isset( $settings['link'] ) && ! empty( $settings['link']['href'] ) ) {
131 + $svg_html = sprintf(
132 + '<a href="%s" target="%s" class="%s" %s>%s</a>',
133 + $settings['link']['href'],
134 + esc_attr( $settings['link']['target'] ),
135 + esc_attr( $classes_string ),
136 + $all_attributes,
137 + $svg_html
138 + );
139 + } else {
140 + $svg_html = sprintf( '<div class="%s" %s>%s</div>', esc_attr( $classes_string ), $all_attributes, $svg_html );
141 + }
142 +
143 + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
144 + echo $svg_html;
109 145 }
110 146
111 - public function render_markdown(): string {
112 - return '';
147 + private function get_svg_content( $settings ) {
148 + if ( isset( $settings['svg']['id'] ) ) {
149 + $content = Utils::file_get_contents(
150 + get_attached_file( $settings['svg']['id'] )
151 + );
152 +
153 + if ( $content ) {
154 + return $content;
155 + }
156 + }
157 +
158 + if (
159 + isset( $settings['svg']['url'] ) &&
160 + static::DEFAULT_SVG_URL !== $settings['svg']['url']
161 + ) {
162 + $content = wp_safe_remote_get(
163 + $settings['svg']['url']
164 + );
165 +
166 + if ( ! is_wp_error( $content ) ) {
167 + return $content['body'];
168 + }
169 + }
170 +
171 + $content = Utils::file_get_contents(
172 + static::DEFAULT_SVG_PATH
173 + );
174 +
175 + return $content ? $content : null;
176 + }
177 +
178 + private function add_svg_style( &$svg, $new_style ) {
179 + $svg_style = $svg->get_attribute( 'style' );
180 + $svg_style = trim( (string) $svg_style );
181 +
182 + if ( empty( $svg_style ) ) {
183 + $svg_style = $new_style;
184 + } else {
185 + $svg_style = rtrim( $svg_style, ';' ) . '; ' . $new_style;
186 + }
187 +
188 + $svg->set_attribute( 'style', $svg_style );
113 189 }
114 190 }