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-heading/atomic-heading.php +14 -52 4.2.0-beta2 → 3.32.3 View file →
@@ -1,23 +1,21 @@
1 1 <?php
2 2 namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Heading;
3 3
4 4 use Elementor\Modules\AtomicWidgets\Controls\Section;
5 -use Elementor\Modules\AtomicWidgets\Controls\Types\Inline_Editing_Control;
6 5 use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control;
7 6 use Elementor\Modules\AtomicWidgets\Controls\Types\Select_Control;
8 -use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
9 -use Elementor\Modules\AtomicWidgets\Elements\Base\Atomic_Widget_Base;
10 -use Elementor\Modules\AtomicWidgets\Elements\Base\Has_Template;
7 +use Elementor\Modules\AtomicWidgets\Controls\Types\Textarea_Control;
8 +use Elementor\Modules\AtomicWidgets\Elements\Atomic_Widget_Base;
9 +use Elementor\Modules\AtomicWidgets\Elements\Has_Template;
10 +use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
11 11 use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
12 -use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
13 -use Elementor\Modules\AtomicWidgets\PropTypes\Html_V3_Prop_Type;
14 12 use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
15 13 use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
16 14 use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
17 15 use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
18 16 use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
19 -use Elementor\Modules\Components\PropTypes\Overridable_Prop_Type;
17 +use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
20 18
21 19 if ( ! defined( 'ABSPATH' ) ) {
22 20 exit; // Exit if accessed directly.
23 21 }
@@ -26,10 +24,8 @@
26 24 use Has_Template;
27 25
28 26 const LINK_BASE_STYLE_KEY = 'link-base';
29 27
30 - public static $widget_description = 'Display a heading with customizable tag, styles, and link options.';
31 -
32 28 public static function get_element_type(): string {
33 29 return 'e-heading';
34 30 }
35 31
@@ -45,38 +41,33 @@
45 41 return 'eicon-e-heading';
46 42 }
47 43
48 44 protected static function define_props_schema(): array {
49 - return [
45 + $props = [
50 46 'classes' => Classes_Prop_Type::make()
51 47 ->default( [] ),
52 48
53 49 'tag' => String_Prop_Type::make()
54 50 ->enum( [ 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ] )
55 - ->default( 'h2' )
56 - ->description( 'The HTML tag for the heading element. Could be h1, h2, up to h6' ),
51 + ->default( 'h2' ),
57 52
58 - 'title' => Html_V3_Prop_Type::make()
59 - ->default( [
60 - 'content' => String_Prop_Type::generate( __( 'This is a title', 'elementor' ) ),
61 - 'children' => [],
62 - ] )
63 - ->description( 'The text content of the heading.' )
64 - ->alias( 'text', 'content', 'heading' ),
53 + 'title' => String_Prop_Type::make()
54 + ->default( __( 'This is a title', 'elementor' ) ),
65 55
66 56 'link' => Link_Prop_Type::make(),
67 57
68 - 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ),
58 + 'attributes' => Attributes_Prop_Type::make(),
69 59 ];
60 +
61 + return $props;
70 62 }
71 63
72 64 protected function define_atomic_controls(): array {
73 65 $content_section = Section::make()
74 66 ->set_label( __( 'Content', 'elementor' ) )
75 - ->set_id( 'content' )
76 67 ->set_items( [
77 - Inline_Editing_Control::bind_to( 'title' )
78 - ->set_placeholder( __( 'Type your title here', 'elementor' ) )
68 + Textarea_Control::bind_to( 'title' )
69 + ->set_placeholder( __( 'Type your title here', 'elementor' ) )
79 70 ->set_label( __( 'Title', 'elementor' ) ),
80 71 ] );
81 72
82 73 return [
@@ -118,9 +109,8 @@
118 109 ],
119 110 ])
120 111 ->set_label( __( 'Tag', 'elementor' ) ),
121 112 Link_Control::bind_to( 'link' )
122 - ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) )
123 113 ->set_label( __( 'Link', 'elementor' ) )
124 114 ->set_meta( [
125 115 'topDivider' => true,
126 116 ] ),
@@ -154,34 +144,6 @@
154 144 protected function get_templates(): array {
155 145 return [
156 146 'elementor/elements/atomic-heading' => __DIR__ . '/atomic-heading.html.twig',
157 147 ];
158 - }
159 -
160 - public function render_markdown(): string {
161 - $settings = $this->get_atomic_settings();
162 - $title = wp_strip_all_tags( $settings['title'] ?? '' );
163 -
164 - if ( empty( $title ) ) {
165 - return '';
166 - }
167 -
168 - $tag = $settings['tag'] ?? 'h2';
169 - $level_map = [
170 - 'h1' => 1,
171 - 'h2' => 2,
172 - 'h3' => 3,
173 - 'h4' => 4,
174 - 'h5' => 5,
175 - 'h6' => 6,
176 - ];
177 - $level = $level_map[ $tag ] ?? 2;
178 -
179 - $md = str_repeat( '#', $level ) . ' ' . $title;
180 -
181 - if ( ! empty( $settings['link']['href'] ) ) {
182 - $md = str_repeat( '#', $level ) . ' [' . $title . '](' . esc_url( $settings['link']['href'] ) . ')';
183 - }
184 -
185 - return $md;
186 148 }
187 149 }