PluginProbe
Elementor Website Builder – more than just a page builder / 3.24.8
Elementor Website Builder – more than just a page builder v3.24.8
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 +18 -59 4.1.23.24.8 View file →
@@ -119,12 +119,8 @@
119 119 public function get_script_depends() {
120 120 return $this->depended_scripts;
121 121 }
122 122
123 - public function get_global_scripts() {
124 - return [ 'elementor-frontend' ];
125 - }
126 -
127 123 /**
128 124 * Enqueue scripts.
129 125 *
130 126 * Registers all the scripts defined as element dependencies and enqueues
@@ -134,9 +130,9 @@
134 130 * @access public
135 131 */
136 132 final public function enqueue_scripts() {
137 133 $deprecated_scripts = [
138 - // Insert here when you have a deprecated script.
134 + //Insert here when you have a deprecated script
139 135 ];
140 136
141 137 foreach ( $this->get_script_depends() as $script ) {
142 138 if ( isset( $deprecated_scripts[ $script ] ) ) {
@@ -144,16 +140,10 @@
144 140 }
145 141
146 142 wp_enqueue_script( $script );
147 143 }
148 -
149 - foreach ( $this->get_global_scripts() as $script ) {
150 - wp_enqueue_script( $script );
151 - }
152 144 }
153 145
154 - public function register_frontend_handlers() {}
155 -
156 146 /**
157 147 * Get style dependencies.
158 148 *
159 149 * Retrieve the list of style dependencies the element requires.
@@ -297,9 +287,9 @@
297 287
298 288 /**
299 289 * Whether the element returns dynamic content.
300 290 *
301 - * Set to determine whether to cache the element output or not.
291 + * set to determine whether to cache the element output or not.
302 292 *
303 293 * @since 3.22.0
304 294 * @access protected
305 295 *
@@ -326,28 +316,8 @@
326 316
327 317 return $this->children;
328 318 }
329 319
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 320 /**
351 321 * Get default arguments.
352 322 *
353 323 * Retrieve the element default arguments. Used to return all the default
@@ -426,14 +396,15 @@
426 396 * @since 2.8.0
427 397 * @access public
428 398 *
429 399 * @param array|string $element The HTML element.
430 - * @param array $url_control Array of link settings.
431 - * @param bool $overwrite Optional. Whether to overwrite existing
432 - * attribute. Default is false, not to overwrite.
400 + * @param array $url_control Array of link settings.
401 + * @param bool $overwrite Optional. Whether to overwrite existing
402 + * attribute. Default is false, not to overwrite.
433 403 *
434 404 * @return Element_Base Current instance of the element.
435 405 */
406 +
436 407 public function add_link_attributes( $element, array $url_control, $overwrite = false ) {
437 408 $attributes = [];
438 409
439 410 if ( ! empty( $url_control['url'] ) ) {
@@ -450,9 +421,9 @@
450 421 $attributes['rel'] = 'nofollow';
451 422 }
452 423
453 424 if ( ! empty( $url_control['custom_attributes'] ) ) {
454 - // Custom URL attributes should come as a string of comma-delimited key|value pairs.
425 + // Custom URL attributes should come as a string of comma-delimited key|value pairs
455 426 $attributes = array_merge( $attributes, Utils::parse_custom_attributes( $url_control['custom_attributes'] ) );
456 427 }
457 428
458 429 if ( $attributes ) {
@@ -473,11 +444,9 @@
473 444 public function print_element() {
474 445 $element_type = $this->get_type();
475 446
476 447 if ( $this->should_render_shortcode() ) {
477 - $unique_id = apply_filters( 'elementor/element_cache/unique_id', '' );
478 -
479 - echo '[elementor-element k="' . esc_attr( $unique_id ) . '" data="' . esc_attr( base64_encode( wp_json_encode( $this->get_raw_data() ) ) ) . '"]';
448 + echo '[elementor-element data="' . esc_attr( base64_encode( wp_json_encode( $this->get_raw_data() ) ) ) . '"]';
480 449 return;
481 450 }
482 451
483 452 /**
@@ -724,9 +693,9 @@
724 693 * @param array|null $controls The available controls.
725 694 *
726 695 * @return array Element data.
727 696 */
728 - public static function on_import_update_dynamic_content( array $config, array $data, $controls = null ): array {
697 + public static function on_import_update_dynamic_content( array $config, array $data, $controls = null ) : array {
729 698 $tags_manager = Plugin::$instance->dynamic_tags;
730 699
731 700 if ( empty( $config['settings'][ $tags_manager::DYNAMIC_SETTING_KEY ] ) ) {
732 701 return $config;
@@ -789,9 +758,8 @@
789 758 'elementor-element-' . $id,
790 759 ],
791 760 'data-id' => $id,
792 761 'data-element_type' => $this->get_type(),
793 - 'data-e-type' => $this->get_type(),
794 762 ] );
795 763
796 764 $class_settings = [];
797 765
@@ -816,15 +784,15 @@
816 784 }
817 785
818 786 $_animation = ! empty( $settings['_animation'] );
819 787 $animation = ! empty( $settings['animation'] );
820 - $has_animation = ( $_animation && 'none' !== $settings['_animation'] ) || ( $animation && 'none' !== $settings['animation'] );
788 + $has_animation = $_animation && 'none' !== $settings['_animation'] || $animation && 'none' !== $settings['animation'];
821 789
822 790 if ( $has_animation ) {
823 791 $is_static_render_mode = Plugin::$instance->frontend->is_static_render_mode();
824 792
825 793 if ( ! $is_static_render_mode ) {
826 - // Hide the element until the animation begins.
794 + // Hide the element until the animation begins
827 795 $this->add_render_attribute( '_wrapper', 'class', 'elementor-invisible' );
828 796 }
829 797 }
830 798
@@ -852,15 +820,13 @@
852 820 * Register the Transform controls in the advanced tab of the element.
853 821 *
854 822 * Previously registered under the Widget_Common class, but registered a more fundamental level now to enable access from other widgets.
855 823 *
856 - * @param string $element_selector
857 - * @param string $transform_selector_class
858 - * @return void
859 824 * @since 3.9.0
860 825 * @access protected
826 + * @return void
861 827 */
862 - protected function register_transform_section( $element_selector = '', $transform_selector_class = ' > .elementor-widget-container' ) {
828 + protected function register_transform_section( $element_selector = '' ) {
863 829 $default_unit_values_deg = [];
864 830 $default_unit_values_ms = [];
865 831
866 832 // Set the default unit sizes for all active breakpoints.
@@ -889,8 +855,9 @@
889 855 $this->start_controls_tabs( '_tabs_positioning' );
890 856
891 857 $transform_prefix_class = 'e-';
892 858 $transform_return_value = 'transform';
859 + $transform_selector_class = ' > .elementor-widget-container';
893 860 $transform_css_modifier = '';
894 861
895 862 if ( 'con' === $element_selector ) {
896 863 $transform_selector_class = '.e-' . $element_selector;
@@ -953,9 +920,8 @@
953 920 ],
954 921 'condition' => [
955 922 "_transform_rotate_popover{$tab}!" => '',
956 923 ],
957 - 'frontend_available' => true,
958 924 ]
959 925 );
960 926
961 927 $this->add_responsive_control(
@@ -1333,9 +1299,9 @@
1333 1299 'relation' => 'or',
1334 1300 'terms' => array_merge( $transform_origin_conditions, $transform_origin_conditions_hover ),
1335 1301 ];
1336 1302
1337 - // Will override motion effect transform-origin.
1303 + // Will override motion effect transform-origin
1338 1304 $this->add_responsive_control(
1339 1305 'motion_fx_transform_x_anchor_point',
1340 1306 [
1341 1307 'label' => esc_html__( 'X Anchor Point', 'elementor' ),
@@ -1361,9 +1327,9 @@
1361 1327 ],
1362 1328 ]
1363 1329 );
1364 1330
1365 - // Will override motion effect transform-origin.
1331 + // Will override motion effect transform-origin
1366 1332 $this->add_responsive_control(
1367 1333 'motion_fx_transform_y_anchor_point',
1368 1334 [
1369 1335 'label' => esc_html__( 'Y Anchor Point', 'elementor' ),
@@ -1514,11 +1480,8 @@
1514 1480
1515 1481 /**
1516 1482 * A Base method for sanitizing the settings before save.
1517 1483 * This method is meant to be overridden by the element.
1518 - *
1519 - * @param array $settings
1520 - * @return array
1521 1484 */
1522 1485 protected function on_save( array $settings ) {
1523 1486 return $settings;
1524 1487 }
@@ -1537,9 +1500,9 @@
1537 1500 */
1538 1501 private function get_child_type( $element_data ) {
1539 1502 $child_type = $this->_get_default_child_type( $element_data );
1540 1503
1541 - // If it's not a valid widget ( like a deactivated plugin ).
1504 + // If it's not a valid widget ( like a deactivated plugin )
1542 1505 if ( ! $child_type ) {
1543 1506 return false;
1544 1507 }
1545 1508
@@ -1584,12 +1547,8 @@
1584 1547 $this->add_child( $child_data );
1585 1548 }
1586 1549 }
1587 1550
1588 - public function has_widget_inner_wrapper(): bool {
1589 - return true;
1590 - }
1591 -
1592 1551 /**
1593 1552 * Element base constructor.
1594 1553 *
1595 1554 * Initializing the element base class using `$data` and `$args`.
@@ -1602,9 +1561,9 @@
1602 1561 *
1603 1562 * @param array $data Optional. Element data. Default is an empty array.
1604 1563 * @param array|null $args Optional. Element default arguments. Default is null.
1605 1564 **/
1606 - public function __construct( array $data = [], ?array $args = null ) {
1565 + public function __construct( array $data = [], array $args = null ) {
1607 1566 if ( $data ) {
1608 1567 $this->is_type_instance = false;
1609 1568 } elseif ( $args ) {
1610 1569 $this->default_args = $args;