/var/www/html/wp-content/plugins/elementor/core/admin/admin-notices.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
<?php
namespace Elementor\Core\Admin;

use 
Elementor\Api;
use 
Elementor\Core\Admin\UI\Components\Button;
use 
Elementor\Core\Base\Module;
use 
Elementor\Core\Utils\Promotions\Filtered_Promotions_Manager;
use 
Elementor\Plugin;
use 
Elementor\Settings;
use 
Elementor\Tracker;
use 
Elementor\User;
use 
Elementor\Utils;
use 
Elementor\Core\Admin\Notices\Base_Notice;
use 
Elementor\Core\Admin\Notices\Elementor_Dev_Notice;

if ( ! 
defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly.
}

class 
Admin_Notices extends Module {

    const 
DEFAULT_EXCLUDED_PAGES = [ 'plugins.php''plugin-install.php''plugin-editor.php' ];

    private 
$plain_notices = [
        
'api_notice',
        
'api_upgrade_plugin',
        
'tracker',
        
'rate_us_feedback',
        
'role_manager_promote',
        
'experiment_promotion',
        
'site_mailer_promotion',
        
'plugin_image_optimization',
    ];

    private 
$elementor_pages_count null;

    private 
$install_time null;

    private 
$current_screen_id null;

    private function 
get_notices() {
        
$notices = [
            new 
Elementor_Dev_Notice(),
        ];

        
/**
         * Admin notices.
         *
         * Filters Elementor admin notices.
         *
         * This hook can be used by external developers to manage existing
         * admin notice or to add new notices for Elementor add-ons.
         *
         * @param array $notices A list of notice classes.
         */
        
$notices apply_filters'elementor/core/admin/notices'$notices );

        return 
$notices;
    }

    private function 
get_install_time() {
        if ( 
null === $this->install_time ) {
            
$this->install_time Plugin::$instance->get_install_time();
        }

        return 
$this->install_time;
    }

    private function 
get_elementor_pages_count() {
        if ( 
null === $this->elementor_pages_count ) {
            
$elementor_pages = new \WP_Query( [
                
'no_found_rows' => true,
                
'post_type' => 'any',
                
'post_status' => 'publish',
                
'fields' => 'ids',
                
'update_post_meta_cache' => false,
                
'update_post_term_cache' => false,
                
'meta_key' => '_elementor_edit_mode',
                
'meta_value' => 'builder',
            ] );

            
$this->elementor_pages_count $elementor_pages->post_count;
        }

        return 
$this->elementor_pages_count;
    }

    private function 
notice_api_upgrade_plugin() {
        
$upgrade_notice Api::get_upgrade_notice();
        if ( empty( 
$upgrade_notice ) ) {
            return 
false;
        }

        if ( ! 
current_user_can'update_plugins' ) ) {
            return 
false;
        }

        if ( ! 
in_array$this->current_screen_id, [ 'toplevel_page_elementor''edit-elementor_library''elementor_page_elementor-system-info''dashboard' ], true ) ) {
            return 
false;
        }

        
// Check for upgrades.
        
$update_plugins get_site_transient'update_plugins' );

        
$has_remote_update_package = ! ( empty( $update_plugins ) || empty( $update_plugins->responseELEMENTOR_PLUGIN_BASE ] ) || empty( $update_plugins->responseELEMENTOR_PLUGIN_BASE ]->package ) );

        if ( ! 
$has_remote_update_package && empty( $upgrade_notice['update_link'] ) ) {
            return 
false;
        }

        if ( 
$has_remote_update_package ) {
            
$product $update_plugins->responseELEMENTOR_PLUGIN_BASE ];

            
$details_url self_admin_url'plugin-install.php?tab=plugin-information&plugin=' $product->slug '&section=changelog&TB_iframe=true&width=600&height=800' );
            
$upgrade_url wp_nonce_urlself_admin_url'update.php?action=upgrade-plugin&plugin=' ELEMENTOR_PLUGIN_BASE ), 'upgrade-plugin_' ELEMENTOR_PLUGIN_BASE );
            
$new_version $product->new_version;
        } else {
            
$upgrade_url $upgrade_notice['update_link'];
            
$details_url $upgrade_url;

            
$new_version $upgrade_notice['version'];
        }

        
// Check if upgrade messages should be shown.
        
if ( version_compareELEMENTOR_VERSION$upgrade_notice['version'], '>=' ) ) {
            return 
false;
        }

        
$notice_id 'upgrade_notice_' $upgrade_notice['version'];
        if ( 
User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$message sprintf(
            
/* translators: 1: Details URL, 2: Accessibility text, 3: Version number, 4: Update URL, 5: Accessibility text. */
            
__'There is a new version of Elementor Page Builder available. <a href="%1$s" class="thickbox open-plugin-details-modal" aria-label="%2$s">View version %3$s details</a> or <a href="%4$s" class="update-link" aria-label="%5$s">update now</a>.''elementor' ),
            
esc_url$details_url ),
            
esc_attrsprintf(
                
/* translators: %s: Elementor version. */
                
__'View Elementor version %s details''elementor' ),
                
$new_version
            
) ),
            
$new_version,
            
esc_url$upgrade_url ),
            
esc_attresc_html__'Update Now''elementor' ) )
        );

        
$options = [
            
'title' => esc_html__'Update Notification''elementor' ),
            
'description' => $message,
            
'button' => [
                
'icon_classes' => 'dashicons dashicons-update',
                
'text' => esc_html__'Update Now''elementor' ),
                
'url' => $upgrade_url,
            ],
            
'id' => $notice_id,
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
notice_api_notice() {
        
$admin_notice Api::get_admin_notice();
        if ( empty( 
$admin_notice ) ) {
            return 
false;
        }

        if ( ! 
current_user_can'manage_options' ) ) {
            return 
false;
        }

        if ( ! 
in_array$this->current_screen_id, [ 'toplevel_page_elementor''edit-elementor_library''elementor_page_elementor-system-info''dashboard' ], true ) ) {
            return 
false;
        }

        
$notice_id 'admin_notice_api_' $admin_notice['notice_id'];
        if ( 
User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$options = [
            
'title' => esc_html__'Update Notification''elementor' ),
            
'description' => $admin_notice['notice_text'],
            
'id' => $notice_id,
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
notice_tracker() {
        if ( ! 
current_user_can'manage_options' ) ) {
            return 
false;
        }

        
// Show tracker notice after 24 hours from installed time.
        
if ( strtotime'+24 hours'$this->get_install_time() ) > time() ) {
            return 
false;
        }

        if ( 
'1' === get_option'elementor_tracker_notice' ) ) {
            return 
false;
        }

        if ( 
Tracker::is_allow_track() ) {
            return 
false;
        }

        if ( 
$this->get_elementor_pages_count() ) {
            return 
false;
        }

        
// TODO: Skip for development env.
        
$optin_url wp_nonce_urladd_query_arg'elementor_tracker''opt_into' ), 'opt_into' );
        
$optout_url wp_nonce_urladd_query_arg'elementor_tracker''opt_out' ), 'opt_out' );

        
$tracker_description_text esc_html__'Become a super contributor by opting in to share non-sensitive plugin data and to receive periodic email updates from us.''elementor' );

        
/**
         * Tracker admin description text.
         *
         * Filters the admin notice text for non-sensitive data collection.
         *
         * @since 1.0.0
         *
         * @param string $tracker_description_text Description text displayed in admin notice.
         */
        
$tracker_description_text apply_filters'elementor/tracker/admin_description_text'$tracker_description_text );

        
$message esc_html$tracker_description_text ) . ' <a href="https://go.elementor.com/usage-data-tracking/" target="_blank">' esc_html__'Learn more.''elementor' ) . '</a>';

        
$options = [
            
'title' => esc_html__'Love using Elementor?''elementor' ),
            
'description' => $message,
            
'button' => [
                
'text' => esc_html__'Sure! I\'d love to help''elementor' ),
                
'url' => $optin_url,
                
'type' => 'cta',
            ],
            
'button_secondary' => [
                
'text' => esc_html__'No thanks''elementor' ),
                
'url' => $optout_url,
                
'variant' => 'outline',
                
'type' => 'cta',
            ],
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
notice_rate_us_feedback() {
        
$notice_id 'rate_us_feedback';

        if ( ! 
current_user_can'manage_options' ) ) {
            return 
false;
        }

        if ( 
'dashboard' !== $this->current_screen_id || User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        if ( 
10 >= $this->get_elementor_pages_count() ) {
            return 
false;
        }

        
$dismiss_url add_query_arg( [
            
'action' => 'elementor_set_admin_notice_viewed',
            
'notice_id' => esc_attr$notice_id ),
        ], 
admin_url'admin-post.php' ) );

        
$options = [
            
'title' => esc_html__'Congrats!''elementor' ),
            
'description' => esc_html__'You created over 10 pages with Elementor. Great job! If you can spare a minute, please help us by leaving a five star review on WordPress.org.''elementor' ),
            
'id' => $notice_id,
            
'button' => [
                
'text' => esc_html__'Happy To Help''elementor' ),
                
'url' => 'https://go.elementor.com/admin-review/',
                
'new_tab' => true,
                
'type' => 'cta',
            ],
            
'button_secondary' => [
                
'text' => esc_html__'Hide Notification''elementor' ),
                
'classes' => [ 'e-notice-dismiss' ],
                
'url' => esc_url_raw$dismiss_url ),
                
'new_tab' => true,
                
'type' => 'cta',
            ],
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
notice_role_manager_promote() {
        
$notice_id 'role_manager_promote';

        if ( 
Utils::has_pro() ) {
            return 
false;
        }

        if ( ! 
current_user_can'manage_options' ) ) {
            return 
false;
        }

        if ( 
'elementor_page_elementor-role-manager' !== $this->current_screen_id || User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$users = new \WP_User_Query( [
            
'fields' => 'ID',
            
'number' => 10,
        ] );

        if ( 
$users->get_total() ) {
            return 
false;
        }

        
$options = [
            
'title' => esc_html__'Managing a multi-user site?''elementor' ),
            
'description' => esc_html__'With Elementor Pro, you can control user access and make sure no one messes up your design.''elementor' ),
            
'id' => $notice_id,

            
'button' => [
                
'text' => esc_html__'Learn More''elementor' ),
                
'url' => 'https://go.elementor.com/plugin-promotion-role-manager/',
                
'new_tab' => true,
                
'type' => 'cta',
            ],
        ];

        
$options Filtered_Promotions_Manager::get_filtered_promotion_data$options'core/admin/notice_role_manager_promote''button''url' );

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
notice_experiment_promotion() {
        
$notice_id 'experiment_promotion';

        if ( ! 
current_user_can'manage_options' ) || User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$experiments Plugin::$instance->experiments;
        
$is_all_performance_features_active = (
            
$experiments->is_feature_active'e_element_cache' ) &&
            
$experiments->is_feature_active'e_font_icon_svg' )
        );

        if ( 
$is_all_performance_features_active ) {
            return 
false;
        }

        
$options = [
            
'title' => esc_html__'Improve your site’s performance score.''elementor' ),
            
'description' => esc_html__'With our experimental speed boosting features you can go faster than ever before. Look for the Performance label on our Experiments page and activate those experiments to improve your site loading speed.''elementor' ),
            
'id' => $notice_id,
            
'button' => [
                
'text' => esc_html__'Try it out''elementor' ),
                
'url' => Settings::get_settings_tab_url'experiments' ),
                
'type' => 'cta',
            ],
            
'button_secondary' => [
                
'text' => esc_html__'Learn more''elementor' ),
                
'url' => 'https://go.elementor.com/wp-dash-experiment-promotion/',
                
'new_tab' => true,
                
'type' => 'cta',
            ],
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
site_has_forms_plugins() {
        return 
defined'WPFORMS_VERSION' ) || defined'WPCF7_VERSION' ) || defined'FLUENTFORM_VERSION' ) || class_exists'\GFCommon' ) || class_exists'\Ninja_Forms' ) || function_exists'load_formidable_forms' );
    }

    private function 
site_has_woocommerce() {
        return 
class_exists'WooCommerce' );
    }

    private function 
notice_site_mailer_promotion() {
        
$notice_id 'site_mailer_promotion';
        
$has_forms $this->site_has_forms_plugins();
        
$has_woocommerce $this->site_has_woocommerce();

        if ( ! 
$has_forms && ! $has_woocommerce ) {
            return 
false;
        }

        if ( ! 
$this->is_elementor_page() && ! in_array$this->current_screen_id, [ 'toplevel_page_elementor''edit-elementor_library''dashboard' ], true ) ) {
            return 
false;
        }

        if ( ( 
Utils::has_pro() && ! $has_woocommerce ) || ! current_user_can'install_plugins' ) || User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$plugin_file_path 'site-mailer/site-mailer.php';
        
$plugin_slug 'site-mailer';

        
$cta_data $this->get_plugin_cta_data$plugin_slug$plugin_file_path );
        if ( empty( 
$cta_data ) ) {
            return 
false;
        }

        
$options = [
            
'title' => esc_html__'Ensure your form emails avoid the spam folder!''elementor' ),
            
'description' => esc_html__'Use Site Mailer for improved email deliverability, detailed email logs, and an easy setup.''elementor' ),
            
'id' => $notice_id,
            
'type' => 'cta',
            
'button' => [
                
'text' => $cta_data['text'],
                
'url' => $cta_data['url'],
                
'type' => 'cta',
            ],
            
'button_secondary' => [
                
'text' => esc_html__'Learn more''elementor' ),
                
'url' => 'https://go.elementor.com/sm-core-form/',
                
'new_tab' => true,
                
'type' => 'cta',
            ],
        ];

        if ( 
$this->should_render_woocommerce_hint$has_forms$has_woocommerce ) ) {
            
// We include WP's default notice class so it will be properly handled by WP's js handler
            // And add a new one to distinguish between the two types of notices
            
$options['classes'] = [ 'notice''e-notice''sm-notice-wc' ];
            
$options['title'] = esc_html__'Improve Transactional Email Deliverability''elementor' );
            
$options['description'] = esc_html__'Use Elementor\'s Site Mailer to ensure your store emails like purchase confirmations, shipping updates and more are reliably delivered.''elementor' );
        }

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
should_render_woocommerce_hint$has_forms$has_woocommerce ): bool {
        if ( ! 
$has_forms && ! $has_woocommerce ) {
            return 
false;
        }

        if ( ! 
$has_forms && $has_woocommerce ) {
            return 
true;
        }

        if ( 
$has_forms && $has_woocommerce && Utils::has_pro() ) {
            return 
true;
        }

        return (bool) 
mt_rand0);
    }

    private function 
is_elementor_page(): bool {
        return 
=== strpos$this->current_screen_id'elementor_page' );
    }

    private function 
get_plugin_cta_data$plugin_slug$plugin_file_path ) {
        if ( 
is_plugin_active$plugin_file_path ) ) {
            return 
false;
        }

        if ( 
$this->is_plugin_installed$plugin_file_path ) ) {
            
$url wp_nonce_url'plugins.php?action=activate&amp;plugin=' $plugin_file_path '&amp;plugin_status=all&amp;paged=1&amp;s''activate-plugin_' $plugin_file_path );
            
$cta_text esc_html__'Activate Plugin''elementor' );
        } else {
            
$url wp_nonce_urlself_admin_url'update.php?action=install-plugin&plugin=' $plugin_slug ), 'install-plugin_' $plugin_slug );
            
$cta_text esc_html__'Install Plugin''elementor' );
        }

        return [
            
'url' => $url,
            
'text' => $cta_text,
        ];
    }

    
// For testing purposes
    
public function get_elementor_version() {
        return 
ELEMENTOR_VERSION;
    }

    private function 
notice_plugin_image_optimization() {
        
$notice_id 'plugin_image_optimization';

        if ( 
'upload' !== $this->current_screen_id ) {
            return 
false;
        }

        if ( ! 
current_user_can'manage_options' ) || User::is_user_notice_viewed$notice_id ) ) {
            return 
false;
        }

        
$attachments = new \WP_Query( [
            
'post_type' => 'attachment',
            
'post_status' => 'any',
            
'fields' => 'ids',
        ] );

        if ( 
$attachments->found_posts ) {
            return 
false;
        }

        
$plugin_file_path 'image-optimization/image-optimization.php';
        
$plugin_slug 'image-optimization';

        
$cta_data $this->get_plugin_cta_data$plugin_slug$plugin_file_path );

        if ( empty( 
$cta_data ) ) {
            return 
false;
        }

        
$options = [
            
'title' => esc_html__'Speed up your website with Image Optimizer by Elementor''elementor' ),
            
'description' => esc_html__'Automatically compress and optimize images, resize larger files, or convert to WebP. Optimize images individually, in bulk, or on upload.''elementor' ),
            
'id' => $notice_id,
            
'type' => 'cta',
            
'button_secondary' => [
                
'text' => $cta_data['text'],
                
'url' => $cta_data['url'],
                
'type' => 'cta',
            ],
        ];

        
$this->print_admin_notice$options );

        return 
true;
    }

    private function 
is_plugin_installed$file_path ): bool {
        
$installed_plugins get_plugins();

        return isset( 
$installed_plugins$file_path ] );
    }

    public function 
print_admin_notice( array $options$exclude_pages self::DEFAULT_EXCLUDED_PAGES ) {
        global 
$pagenow;

        if ( 
in_array$pagenow$exclude_pagestrue ) ) {
            return;
        }

        
$default_options = [
            
'id' => null,
            
'title' => '',
            
'description' => '',
            
'classes' => [ 'notice''e-notice' ], // We include WP's default notice class so it will be properly handled by WP's js handler
            
'type' => '',
            
'dismissible' => true,
            
'icon' => 'eicon-elementor',
            
'button' => [],
            
'button_secondary' => [],
        ];

        
$options array_replace_recursive$default_options$options );

        
$notice_classes $options['classes'];
        
$dismiss_button '';
        
$icon '';

        if ( 
$options['type'] ) {
            
$notice_classes[] = 'e-notice--' $options['type'];
        }

        if ( 
$options['dismissible'] ) {
            
$label esc_html__'Dismiss this notice.''elementor' );
            
$notice_classes[] = 'e-notice--dismissible';
            
$dismiss_button '<i class="e-notice__dismiss" role="button" aria-label="' $label '" tabindex="0"></i>';
        }

        if ( 
$options['icon'] ) {
            
$notice_classes[] = 'e-notice--extended';
            
$icon '<div class="e-notice__icon-wrapper"><i class="' esc_attr$options['icon'] ) . '" aria-hidden="true"></i></div>';
        }

        
$wrapper_attributes = [
            
'class' => $notice_classes,
        ];

        if ( 
$options['id'] ) {
            
$wrapper_attributes['data-notice_id'] = $options['id'];
        }
        
?>
        <div <?php Utils::print_html_attributes$wrapper_attributes ); ?>>
            <?php echo $dismiss_button// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
            <div class="e-notice__aside">
                <?php echo $icon// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
            </div>
            <div class="e-notice__content">
                <?php if ( $options['title'] ) { ?>
                    <h3><?php echo wp_kses_post$options['title'] ); ?></h3>
                <?php ?>

                <?php if ( $options['description'] ) { ?>
                    <p><?php echo wp_kses_post$options['description'] ); ?></p>
                <?php ?>

                <?php if ( ! empty( $options['button']['text'] ) || ! empty( $options['button_secondary']['text'] ) ) { ?>
                    <div class="e-notice__actions">
                        <?php
                        
foreach ( [ $options['button'], $options['button_secondary'] ] as $index => $button_settings ) {
                            if ( empty( 
$button_settings['variant'] ) && $index ) {
                                
$button_settings['variant'] = 'outline';
                            }

                            if ( empty( 
$button_settings['text'] ) ) {
                                continue;
                            }

                            
$button = new Button$button_settings );
                            
$button->print_button();
                        } 
?>
                    </div>
                <?php ?>
            </div>
        </div>
    <?php }

    public function 
admin_notices() {
        
$this->install_time Plugin::$instance->get_install_time();
        
$this->current_screen_id get_current_screen()->id;

        foreach ( 
$this->plain_notices as $notice ) {
            
$method_callback "notice_{$notice}";
            if ( 
$this->$method_callback() ) {
                return;
            }
        }

        
/** @var Base_Notice $notice_instance */
        
foreach ( $this->get_notices() as $notice_instance ) {
            if ( ! 
$notice_instance->should_print() ) {
                continue;
            }

            
$this->print_admin_notice$notice_instance->get_config() );

            
// It exits the method to make sure it prints only one notice.
            
return;
        }
    }

    
/**
     * @since 2.9.0
     * @access public
     */
    
public function __construct() {
        
add_action'admin_notices', [ $this'admin_notices' ], 20 );
    }

    
/**
     * Get module name.
     *
     * Retrieve the module name.
     *
     * @since  2.9.0
     * @access public
     *
     * @return string Module name.
     */
    
public function get_name() {
        return 
'admin-notices';
    }
}