PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.1
Elementor Website Builder – more than just a page builder v3.32.1
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 4.0.7 All 451 releases
← All changes | includes/base/element-base.php +0 -31 4.2.23.32.1 View file →
@@ -150,10 +150,8 @@
150 150 wp_enqueue_script( $script );
151 151 }
152 152 }
153 153
154 - public function register_frontend_handlers() {}
155 -
156 154 /**
157 155 * Get style dependencies.
158 156 *
159 157 * Retrieve the list of style dependencies the element requires.
@@ -326,28 +324,8 @@
326 324
327 325 return $this->children;
328 326 }
329 327
330 - public function render_markdown(): string {
331 - $children = $this->get_children();
332 -
333 - if ( empty( $children ) ) {
334 - return '';
335 - }
336 -
337 - $parts = [];
338 -
339 - foreach ( $children as $child ) {
340 - $md = $child->render_markdown();
341 -
342 - if ( ! empty( trim( $md ) ) ) {
343 - $parts[] = $md;
344 - }
345 - }
346 -
347 - return implode( "\n\n", $parts );
348 - }
349 -
350 328 /**
351 329 * Get default arguments.
352 330 *
353 331 * Retrieve the element default arguments. Used to return all the default
@@ -461,16 +439,8 @@
461 439
462 440 return $this;
463 441 }
464 442
465 - public function reset_descendant_render_state(): void {
466 - $this->reset_render_state();
467 -
468 - foreach ( $this->get_children() as $child ) {
469 - $child->reset_descendant_render_state();
470 - }
471 - }
472 -
473 443 /**
474 444 * Print element.
475 445 *
476 446 * Used to generate the element final HTML on the frontend and the editor.
@@ -797,9 +767,8 @@
797 767 'elementor-element-' . $id,
798 768 ],
799 769 'data-id' => $id,
800 770 'data-element_type' => $this->get_type(),
801 - 'data-e-type' => $this->get_type(),
802 771 ] );
803 772
804 773 $class_settings = [];
805 774