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.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 4.0.8 All 454 releases
← All changes | modules/atomic-widgets/elements/atomic-heading/atomic-heading.php +15 -61 4.3.0 → 3.32.3 View file →
@@ -1,24 +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;
11 -use Elementor\Modules\AtomicWidgets\Elements\Base\Html_Tag_Computer;
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;
12 11 use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
13 -use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
14 -use Elementor\Modules\AtomicWidgets\PropTypes\Escaped_Html_Prop_Type;
15 12 use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
16 13 use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
17 14 use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
18 15 use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
19 16 use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
20 -use Elementor\Modules\Components\PropTypes\Overridable_Prop_Type;
17 +use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
21 18
22 19 if ( ! defined( 'ABSPATH' ) ) {
23 20 exit; // Exit if accessed directly.
24 21 }
@@ -27,10 +24,8 @@
27 24 use Has_Template;
28 25
29 26 const LINK_BASE_STYLE_KEY = 'link-base';
30 27
31 - public static $widget_description = 'Display a heading with customizable tag, styles, and link options.';
32 -
33 28 public static function get_element_type(): string {
34 29 return 'e-heading';
35 30 }
36 31
@@ -38,9 +33,9 @@
38 33 return esc_html__( 'Heading', 'elementor' );
39 34 }
40 35
41 36 public function get_keywords() {
42 - return [ 'ato', 'atom', 'atoms', 'atomic', 'heading', 'title', 'text', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ];
37 + return [ 'ato', 'atom', 'atoms', 'atomic' ];
43 38 }
44 39
45 40 public function get_icon() {
46 41 return 'eicon-e-heading';
@@ -45,46 +40,34 @@
45 40 public function get_icon() {
46 41 return 'eicon-e-heading';
47 42 }
48 43
49 - public static function html_tag_follows_link(): bool {
50 - return false;
51 - }
52 -
53 - public static function get_computed_html_tag( array $settings ): string {
54 - return Html_Tag_Computer::compute( $settings, 'h2', [
55 - Html_Tag_Computer::FOLLOW_LINK_OPTION => static::html_tag_follows_link(),
56 - ] );
57 - }
58 -
59 44 protected static function define_props_schema(): array {
60 - return [
45 + $props = [
61 46 'classes' => Classes_Prop_Type::make()
62 47 ->default( [] ),
63 48
64 49 'tag' => String_Prop_Type::make()
65 50 ->enum( [ 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ] )
66 - ->default( 'h2' )
67 - ->description( 'The HTML tag for the heading element. One of: h1, h2, h3, h4, h5, or h6. Do not use p, span, or div.' ),
51 + ->default( 'h2' ),
68 52
69 - 'title' => Escaped_Html_Prop_Type::make()
70 - ->default( __( 'This is a title', 'elementor' ) )
71 - ->description( 'The text content of the heading.' )
72 - ->alias( 'text', 'content', 'heading' ),
53 + 'title' => String_Prop_Type::make()
54 + ->default( __( 'This is a title', 'elementor' ) ),
73 55
74 56 'link' => Link_Prop_Type::make(),
75 57
76 - 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ),
58 + 'attributes' => Attributes_Prop_Type::make(),
77 59 ];
60 +
61 + return $props;
78 62 }
79 63
80 64 protected function define_atomic_controls(): array {
81 65 $content_section = Section::make()
82 66 ->set_label( __( 'Content', 'elementor' ) )
83 - ->set_id( 'content' )
84 67 ->set_items( [
85 - Inline_Editing_Control::bind_to( 'title' )
86 - ->set_placeholder( __( 'Type your title here', 'elementor' ) )
68 + Textarea_Control::bind_to( 'title' )
69 + ->set_placeholder( __( 'Type your title here', 'elementor' ) )
87 70 ->set_label( __( 'Title', 'elementor' ) ),
88 71 ] );
89 72
90 73 return [
@@ -126,9 +109,8 @@
126 109 ],
127 110 ])
128 111 ->set_label( __( 'Tag', 'elementor' ) ),
129 112 Link_Control::bind_to( 'link' )
130 - ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) )
131 113 ->set_label( __( 'Link', 'elementor' ) )
132 114 ->set_meta( [
133 115 'topDivider' => true,
134 116 ] ),
@@ -162,34 +144,6 @@
162 144 protected function get_templates(): array {
163 145 return [
164 146 'elementor/elements/atomic-heading' => __DIR__ . '/atomic-heading.html.twig',
165 147 ];
166 - }
167 -
168 - public function render_markdown(): string {
169 - $settings = $this->get_atomic_settings();
170 - $title = wp_strip_all_tags( $settings['title'] ?? '' );
171 -
172 - if ( empty( $title ) ) {
173 - return '';
174 - }
175 -
176 - $tag = $settings['tag'] ?? 'h2';
177 - $level_map = [
178 - 'h1' => 1,
179 - 'h2' => 2,
180 - 'h3' => 3,
181 - 'h4' => 4,
182 - 'h5' => 5,
183 - 'h6' => 6,
184 - ];
185 - $level = $level_map[ $tag ] ?? 2;
186 -
187 - $md = str_repeat( '#', $level ) . ' ' . $title;
188 -
189 - if ( ! empty( $settings['link']['href'] ) ) {
190 - $md = str_repeat( '#', $level ) . ' [' . $title . '](' . esc_url( $settings['link']['href'] ) . ')';
191 - }
192 -
193 - return $md;
194 148 }
195 149 }