PluginProbe
Elementor Website Builder – more than just a page builder / 3.25.2
Elementor Website Builder – more than just a page builder v3.25.2
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/managers/widgets.php +18 -67 4.2.0-dev23.25.2 View file →
@@ -2,15 +2,10 @@
2 2 namespace Elementor;
3 3
4 4 use Elementor\Core\Common\Modules\Ajax\Module as Ajax;
5 5 use Elementor\Core\Utils\Collection;
6 +use Elementor\Core\Utils\Exceptions;
6 7 use Elementor\Core\Utils\Force_Locale;
7 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Button\Atomic_Button;
8 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Divider\Atomic_Divider;
9 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Heading\Atomic_Heading;
10 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Image\Atomic_Image;
11 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Paragraph\Atomic_Paragraph;
12 -use Elementor\Modules\AtomicWidgets\Elements\Atomic_Svg\Atomic_Svg;
13 8 use Elementor\Modules\NestedAccordion\Widgets\Nested_Accordion;
14 9 use Elementor\Modules\NestedElements\Module as NestedElementsModule;
15 10 use Elementor\Modules\NestedTabs\Widgets\NestedTabs;
16 11
@@ -56,16 +51,8 @@
56 51 NestedElementsModule::EXPERIMENT_NAME => [
57 52 NestedTabs::class,
58 53 Nested_Accordion::class,
59 54 ],
60 - 'atomic_widgets' => [
61 - Atomic_Heading::class,
62 - Atomic_Image::class,
63 - Atomic_Paragraph::class,
64 - Atomic_Button::class,
65 - Atomic_Svg::class,
66 - Atomic_Divider::class,
67 - ],
68 55 ];
69 56
70 57 /**
71 58 * Init widgets.
@@ -74,14 +61,12 @@
74 61 * and register each Elementor and WordPress widget.
75 62 *
76 63 * @since 2.0.0
77 64 * @access private
78 - */
65 + */
79 66 private function init_widgets() {
80 67 $build_widgets_filename = [
81 - 'common-base',
82 68 'common',
83 - 'common-optimized',
84 69 'inner-section',
85 70 'heading',
86 71 'image',
87 72 'text-editor',
@@ -111,8 +96,9 @@
111 96 'menu-anchor',
112 97 'sidebar',
113 98 'read-more',
114 99 'rating',
100 + 'share-buttons',
115 101 ];
116 102
117 103 $this->_widget_types = [];
118 104
@@ -168,9 +154,9 @@
168 154 * plugin authors can filter the black list.
169 155 *
170 156 * @since 2.0.0
171 157 * @access private
172 - */
158 + */
173 159 private function register_wp_widgets() {
174 160 global $wp_widget_factory;
175 161
176 162 // Allow themes/plugins to filter out their widgets.
@@ -209,9 +195,9 @@
209 195 * Require Elementor widget base class.
210 196 *
211 197 * @since 2.0.0
212 198 * @access private
213 - */
199 + */
214 200 private function require_files() {
215 201 require ELEMENTOR_PATH . 'includes/base/widget-base.php';
216 202 }
217 203
@@ -237,9 +223,9 @@
237 223 *
238 224 * @param Widget_Base $widget Elementor widget.
239 225 *
240 226 * @return true True if the widget was registered.
241 - */
227 + */
242 228 public function register_widget_type( Widget_Base $widget ) {
243 229 Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function(
244 230 __METHOD__,
245 231 '3.5.0',
@@ -307,9 +293,9 @@
307 293 *
308 294 * @param string $name Widget name.
309 295 *
310 296 * @return true True if the widget was unregistered, False otherwise.
311 - */
297 + */
312 298 public function unregister_widget_type( $name ) {
313 299 Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function(
314 300 __METHOD__,
315 301 '3.5.0',
@@ -351,9 +337,9 @@
351 337 *
352 338 * @param string $widget_name Optional. Widget name. Default is null.
353 339 *
354 340 * @return Widget_Base|Widget_Base[]|null Registered widget types.
355 - */
341 + */
356 342 public function get_widget_types( $widget_name = null ) {
357 343 if ( is_null( $this->_widget_types ) ) {
358 344 $this->init_widgets();
359 345 }
@@ -373,9 +359,9 @@
373 359 * @since 1.0.0
374 360 * @access public
375 361 *
376 362 * @return array Registered widget types with each widget config.
377 - */
363 + */
378 364 public function get_widget_types_config() {
379 365 $config = [];
380 366
381 367 foreach ( $this->get_widget_types() as $widget_key => $widget ) {
@@ -385,9 +371,9 @@
385 371 return $config;
386 372 }
387 373
388 374 /**
389 - * @throws \Exception If current user don't have permissions to edit the post.
375 + * @throws \Exception
390 376 */
391 377 public function ajax_get_widget_types_controls_config( array $data ) {
392 378 Plugin::$instance->documents->check_permissions( $data['editor_post_id'] );
393 379
@@ -408,35 +394,8 @@
408 394
409 395 return $config;
410 396 }
411 397
412 - /**
413 - * @throws \Exception If current user don't have permissions to edit the post.
414 - */
415 - public function ajax_refresh_widgets_config( array $data ) {
416 - Plugin::$instance->documents->check_permissions( $data['editor_post_id'] );
417 -
418 - wp_raise_memory_limit( 'admin' );
419 -
420 - $widgets = [];
421 -
422 - foreach ( $this->get_widget_types() as $widget_key => $widget ) {
423 - $widget_config = $widget->get_config();
424 -
425 - // get_config() omits controls when the stack isn't initialized yet (see Widget_Base::get_initial_config).
426 - // During an AJAX refresh the instances are fresh, so we force-initialize and merge them explicitly.
427 - $widget_config['controls'] = $widget->get_stack( false )['controls'];
428 - $widget_config['tabs_controls'] = $widget->get_tabs_controls();
429 -
430 - $widgets[ $widget_key ] = $widget_config;
431 - }
432 -
433 - return [
434 - 'widgets' => $widgets,
435 - 'categories' => Plugin::$instance->elements_manager->get_categories(),
436 - ];
437 - }
438 -
439 398 public function ajax_get_widgets_default_value_translations( array $data = [] ) {
440 399 $locale = empty( $data['locale'] )
441 400 ? get_locale()
442 401 : $data['locale'];
@@ -520,9 +479,9 @@
520 479 *
521 480 * @param array $request Ajax request.
522 481 *
523 482 * @return bool|string Rendered widget form.
524 - * @throws \Exception If current user don't have permissions to edit the post.
483 + * @throws \Exception
525 484 */
526 485 public function ajax_get_wp_widget_form( $request ) {
527 486 Plugin::$instance->documents->check_permissions( $request['editor_post_id'] );
528 487
@@ -560,9 +519,9 @@
560 519 * template, for all the registered widget types.
561 520 *
562 521 * @since 1.0.0
563 522 * @access public
564 - */
523 + */
565 524 public function render_widgets_content() {
566 525 foreach ( $this->get_widget_types() as $widget ) {
567 526 $widget->print_template();
568 527 }
@@ -577,9 +536,9 @@
577 536 * @since 1.3.0
578 537 * @access public
579 538 *
580 539 * @return array Registered widget types with settings keys for each widget.
581 - */
540 + */
582 541 public function get_widgets_frontend_settings_keys() {
583 542 $keys = [];
584 543
585 544 foreach ( $this->get_widget_types() as $widget_type_name => $widget_type ) {
@@ -654,9 +613,9 @@
654 613 * Enqueue all the scripts defined as a dependency for each widget.
655 614 *
656 615 * @since 1.3.0
657 616 * @access public
658 - */
617 + */
659 618 public function enqueue_widgets_scripts() {
660 619 foreach ( $this->get_widget_types() as $widget ) {
661 620 $widget->enqueue_scripts();
662 621 }
@@ -661,14 +620,8 @@
661 620 $widget->enqueue_scripts();
662 621 }
663 622 }
664 623
665 - public function register_frontend_handlers() {
666 - foreach ( $this->get_widget_types() as $widget ) {
667 - $widget->register_frontend_handlers();
668 - }
669 - }
670 -
671 624 /**
672 625 * Enqueue widgets styles
673 626 *
674 627 * Enqueue all the styles defined as a dependency for each widget
@@ -743,9 +696,9 @@
743 696 * Initializing Elementor widgets manager.
744 697 *
745 698 * @since 1.0.0
746 699 * @access public
747 - */
700 + */
748 701 public function __construct() {
749 702 $this->require_files();
750 703
751 704 add_action( 'elementor/ajax/register_actions', [ $this, 'register_ajax_actions' ] );
@@ -765,10 +718,8 @@
765 718 $ajax_manager->register_ajax_action( 'render_widget', [ $this, 'ajax_render_widget' ] );
766 719 $ajax_manager->register_ajax_action( 'editor_get_wp_widget_form', [ $this, 'ajax_get_wp_widget_form' ] );
767 720 $ajax_manager->register_ajax_action( 'get_widgets_config', [ $this, 'ajax_get_widget_types_controls_config' ] );
768 721
769 - $ajax_manager->register_ajax_action( 'refresh_widgets_config', [ $this, 'ajax_refresh_widgets_config' ] );
770 -
771 722 $ajax_manager->register_ajax_action( 'get_widgets_default_value_translations', function ( array $data ) {
772 723 return $this->ajax_get_widgets_default_value_translations( $data );
773 724 } );
774 725 }
@@ -773,13 +724,13 @@
773 724 } );
774 725 }
775 726
776 727 /**
777 - * @param string $experiment_name
778 - * @param array $classes
728 + * @param $experiment_name
729 + * @param $classes
779 730 * @return void
780 731 */
781 - public function register_promoted_active_widgets( string $experiment_name, array $classes ): void {
732 + public function register_promoted_active_widgets( string $experiment_name, array $classes ) : void {
782 733 if ( ! Plugin::$instance->experiments->is_feature_active( $experiment_name ) || empty( $classes ) ) {
783 734 return;
784 735 }
785 736