PluginProbe
Elementor Website Builder – more than just a page builder / 3.28.0-dev2
Elementor Website Builder – more than just a page builder v3.28.0-dev2
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-image/atomic-image.php +14 -86 4.3.2 → 3.28.0-dev2 View file →
@@ -1,22 +1,16 @@
1 1 <?php
2 2 namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Image;
3 3
4 4 use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control;
5 -use Elementor\Modules\AtomicWidgets\Elements\Base\Has_Template;
5 +use Elementor\Modules\AtomicWidgets\Elements\Has_Template;
6 6 use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
7 7 use Elementor\Modules\AtomicWidgets\PropTypes\Image_Prop_Type;
8 8 use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
9 9 use Elementor\Modules\AtomicWidgets\Controls\Section;
10 -use Elementor\Modules\AtomicWidgets\Elements\Base\Atomic_Widget_Base;
11 -use Elementor\Modules\AtomicWidgets\Elements\Base\Html_Tag_Computer;
12 -use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
10 +use Elementor\Modules\AtomicWidgets\Elements\Atomic_Widget_Base;
13 11 use Elementor\Modules\AtomicWidgets\Controls\Types\Image_Control;
14 -use Elementor\Modules\AtomicWidgets\Utils\Image\Placeholder_Image;
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;
12 +use Elementor\Modules\AtomicWidgets\Image\Placeholder_Image;
19 13
20 14 if ( ! defined( 'ABSPATH' ) ) {
21 15 exit; // Exit if accessed directly.
22 16 }
@@ -23,41 +17,22 @@
23 17
24 18 class Atomic_Image extends Atomic_Widget_Base {
25 19 use Has_Template;
26 20
27 - public static $widget_description = 'Display an image with customizable styles and link options.';
28 -
29 - const LINK_BASE_STYLE_KEY = 'link-base';
30 - const BASE_STYLE_KEY = 'base';
31 -
32 21 public static function get_element_type(): string {
33 - return 'e-image';
22 + return 'a-image';
34 23 }
35 24
36 25 public function get_title() {
37 - return esc_html__( 'Image', 'elementor' );
26 + return esc_html__( 'Atomic Image', 'elementor' );
38 27 }
39 28
40 - public function get_keywords() {
41 - return [ 'ato', 'atom', 'atoms', 'atomic', 'image', 'photo', 'picture' ];
42 - }
43 -
44 29 public function get_icon() {
45 30 return 'eicon-e-image';
46 31 }
47 32
48 - public static function html_tag_follows_link(): bool {
49 - return false;
50 - }
51 -
52 - public static function get_computed_html_tag( array $settings ): string {
53 - return Html_Tag_Computer::compute( $settings, 'img', [
54 - Html_Tag_Computer::FOLLOW_LINK_OPTION => static::html_tag_follows_link(),
55 - ] );
56 - }
57 -
58 33 protected static function define_props_schema(): array {
59 - $props = [
34 + return [
60 35 'classes' => Classes_Prop_Type::make()
61 36 ->default( [] ),
62 37
63 38 'image' => Image_Prop_Type::make()
@@ -64,57 +39,23 @@
64 39 ->default_url( Placeholder_Image::get_placeholder_image() )
65 40 ->default_size( 'full' ),
66 41
67 42 'link' => Link_Prop_Type::make(),
68 -
69 - 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ),
70 43 ];
71 -
72 - return $props;
73 44 }
74 45
75 46 protected function define_atomic_controls(): array {
76 - return [
77 - Section::make()
78 - ->set_label( esc_html__( 'Content', 'elementor' ) )
79 - ->set_id( 'content' )
80 - ->set_items( [
81 - Image_Control::bind_to( 'image' )
82 - ->set_label( __( 'Image', 'elementor' ) ),
83 - ] ),
84 - Section::make()
85 - ->set_label( __( 'Settings', 'elementor' ) )
86 - ->set_id( 'settings' )
87 - ->set_items( $this->get_settings_controls() ),
88 - ];
89 - }
47 + $content_section = Section::make()
48 + ->set_label( esc_html__( 'Content', 'elementor' ) )
49 + ->set_items( [
50 + Image_Control::bind_to( 'image' ),
90 51
91 - protected function get_settings_controls(): array {
92 - return [
93 - Link_Control::bind_to( 'link' )
94 - ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) )
95 - ->set_label( __( 'Link', 'elementor' ) ),
96 - Text_Control::bind_to( '_cssid' )
97 - ->set_label( __( 'ID', 'elementor' ) )
98 - ->set_meta( $this->get_css_id_control_meta() ),
99 - ];
100 - }
52 + Link_Control::bind_to( 'link' )
53 + ->set_placeholder( __( 'Paste URL or type', 'elementor' ) ),
54 + ] );
101 55
102 - protected function define_base_styles(): array {
103 56 return [
104 - self::LINK_BASE_STYLE_KEY => Style_Definition::make()
105 - ->add_variant(
106 - Style_Variant::make()
107 - ->add_prop( 'all', 'unset' )
108 - ->add_prop( 'display', 'inherit' )
109 - ->add_prop( 'width', 'fit-content' )
110 - ->add_prop( 'cursor', 'pointer' )
111 - ),
112 - self::BASE_STYLE_KEY => Style_Definition::make()
113 - ->add_variant(
114 - Style_Variant::make()
115 - ->add_prop( 'display', 'block' )
116 - ),
57 + $content_section,
117 58 ];
118 59 }
119 60
120 61 protected function get_templates(): array {
@@ -120,19 +61,6 @@
120 61 protected function get_templates(): array {
121 62 return [
122 63 'elementor/elements/atomic-image' => __DIR__ . '/atomic-image.html.twig',
123 64 ];
124 - }
125 -
126 - public function render_markdown(): string {
127 - $settings = $this->get_atomic_settings();
128 - $src = $settings['image']['src'] ?? '';
129 -
130 - if ( empty( $src ) ) {
131 - return '';
132 - }
133 -
134 - $alt = $settings['image']['alt'] ?? '';
135 -
136 - return '![' . $alt . '](' . esc_url( $src ) . ')';
137 65 }
138 66 }