/var/www/hkosl.com/aga/wp-content/plugins/wordpress-seo/admin/class-admin-init.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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * Performs the load on admin side.
 */
class WPSEO_Admin_Init {

    
/**
     * Holds the global `$pagenow` variable's value.
     *
     * @var string
     */
    
private $pagenow;

    
/**
     * Holds the asset manager.
     *
     * @var WPSEO_Admin_Asset_Manager
     */
    
private $asset_manager;

    
/**
     * Class constructor.
     */
    
public function __construct() {
        
$GLOBALS['wpseo_admin'] = new WPSEO_Admin();

        
$this->pagenow $GLOBALS['pagenow'];

        
$this->asset_manager = new WPSEO_Admin_Asset_Manager();

        
add_action'admin_enqueue_scripts', array( $this'enqueue_dismissible' ) );
        
add_action'admin_init', array( $this'tagline_notice' ), 15 );
        
add_action'admin_init', array( $this'blog_public_notice' ), 15 );
        
add_action'admin_init', array( $this'permalink_notice' ), 15 );
        
add_action'admin_init', array( $this'page_comments_notice' ), 15 );
        
add_action'admin_init', array( $this'ga_compatibility_notice' ), 15 );
        
add_action'admin_init', array( $this'yoast_plugin_compatibility_notification' ), 15 );
        
add_action'admin_init', array( $this'yoast_plugin_suggestions_notification' ), 15 );
        
add_action'admin_init', array( $this'recalculate_notice' ), 15 );
        
add_action'admin_init', array( $this'unsupported_php_notice' ), 15 );
        
add_action'admin_init', array( $this'wordpress_upgrade_notice' ), 15 );
        
add_action'admin_init', array( $this->asset_manager'register_assets' ) );
        
add_action'admin_init', array( $this'show_hook_deprecation_warnings' ) );
        
add_action'admin_init', array( 'WPSEO_Plugin_Conflict''hook_check_for_plugin_conflicts' ) );
        
add_action'admin_init', array( $this'handle_notifications' ), 15 );
        
add_action'admin_notices', array( $this'permalink_settings_notice' ) );
        
add_action'admin_enqueue_scripts', array( $this->asset_manager'register_wp_assets' ), PHP_INT_MAX );

        
$listeners   = array();
        
$listeners[] = new WPSEO_Post_Type_Archive_Notification_Handler();

        
/** @var WPSEO_Listener $listener */
        
foreach ( $listeners as $listener ) {
            
$listener->listen();
        }

        
$this->load_meta_boxes();
        
$this->load_taxonomy_class();
        
$this->load_admin_page_class();
        
$this->load_admin_user_class();
        
$this->load_xml_sitemaps_admin();
        
$this->load_plugin_suggestions();
    }

    
/**
     * Handles the notifiers for the dashboard page.
     *
     * @return void
     */
    
public function handle_notifications() {
        
/**
         * @var WPSEO_Notification_Handler[] $handlers
         */
        
$handlers   = array();
        
$handlers[] = new WPSEO_Post_Type_Archive_Notification_Handler();

        
$notification_center Yoast_Notification_Center::get();
        foreach ( 
$handlers as $handler ) {
            
$handler->handle$notification_center );
        }
    }

    
/**
     * Enqueue our styling for dismissible yoast notifications.
     */
    
public function enqueue_dismissible() {
        
$this->asset_manager->enqueue_style'dismissible' );
    }

    
/**
     * Notify about the default tagline if the user hasn't changed it.
     */
    
public function tagline_notice() {
        
$query_args    = array(
            
'autofocus[control]' => 'blogdescription',
        );
        
$customize_url add_query_arg$query_argswp_customize_url() );

        
$info_message sprintf(
            
/* translators: 1: link open tag; 2: link close tag. */
            
__'You still have the default WordPress tagline, even an empty one is probably better. %1$sYou can fix this in the customizer%2$s.''wordpress-seo' ),
            
'<a href="' esc_attr$customize_url ) . '">',
            
'</a>'
        
);

        
$notification_options = array(
            
'type'         => Yoast_Notification::ERROR,
            
'id'           => 'wpseo-dismiss-tagline-notice',
            
'capabilities' => 'wpseo_manage_options',
        );

        
$tagline_notification = new Yoast_Notification$info_message$notification_options );

        
$notification_center Yoast_Notification_Center::get();
        
$notification_center->remove_notification$tagline_notification );
    }

    
/**
     * Add an alert if the blog is not publicly visible.
     */
    
public function blog_public_notice() {

        
$info_message  '<strong>' __'Huge SEO Issue: You\'re blocking access to robots.''wordpress-seo' ) . '</strong> ';
        
$info_message .= sprintf(
            
/* translators: %1$s resolves to the opening tag of the link to the reading settings, %1$s resolves to the closing tag for the link */
            
__'You must %1$sgo to your Reading Settings%2$s and uncheck the box for Search Engine Visibility.''wordpress-seo' ),
            
'<a href="' esc_urladmin_url'options-reading.php' ) ) . '">',
            
'</a>'
        
);

        
$notification_options = array(
            
'type'         => Yoast_Notification::ERROR,
            
'id'           => 'wpseo-dismiss-blog-public-notice',
            
'priority'     => 1.0,
            
'capabilities' => 'wpseo_manage_options',
        );

        
$notification = new Yoast_Notification$info_message$notification_options );

        
$notification_center Yoast_Notification_Center::get();
        if ( ! 
$this->is_blog_public() ) {
            
$notification_center->add_notification$notification );
        }
        else {
            
$notification_center->remove_notification$notification );
        }
    }

    
/**
     * Display notice to disable comment pagination.
     */
    
public function page_comments_notice() {

        
$info_message  __'Paging comments is enabled, this is not needed in 999 out of 1000 cases, we recommend to disable it.''wordpress-seo' );
        
$info_message .= '<br/>';

        
$info_message .= sprintf(
            
/* translators: %1$s resolves to the opening tag of the link to the comment setting page, %2$s resolves to the closing tag of the link */
            
__'To fix this uncheck the box in front of the "Break comments into pages..." on the %1$sComment settings page%2$s.''wordpress-seo' ),
            
'<a href="' esc_urladmin_url'options-discussion.php' ) ) . '">',
            
'</a>'
        
);

        
$notification_options = array(
            
'type'         => Yoast_Notification::WARNING,
            
'id'           => 'wpseo-dismiss-page_comments-notice',
            
'capabilities' => 'wpseo_manage_options',
        );

        
$tagline_notification = new Yoast_Notification$info_message$notification_options );

        
$notification_center Yoast_Notification_Center::get();
        if ( 
$this->has_page_comments() ) {
            
$notification_center->add_notification$tagline_notification );
        }
        else {
            
$notification_center->remove_notification$tagline_notification );
        }
    }

    
/**
     * Returns whether or not the site has the default tagline.
     *
     * @return bool
     */
    
public function has_default_tagline() {
        
$blog_description         get_bloginfo'description' );
        
$default_blog_description 'Just another WordPress site';

        
// We are checking against the WordPress internal translation.
        // @codingStandardsIgnoreLine
        
$translated_blog_description __'Just another WordPress site''default' );

        return 
$translated_blog_description === $blog_description || $default_blog_description === $blog_description;
    }

    
/**
     * Show alert when the permalink doesn't contain %postname%.
     */
    
public function permalink_notice() {

        
$info_message  __'You do not have your postname in the URL of your posts and pages, it is highly recommended that you do. Consider setting your permalink structure to <strong>/%postname%/</strong>.''wordpress-seo' );
        
$info_message .= '<br/>';
        
$info_message .= sprintf(
            
/* translators: %1$s resolves to the starting tag of the link to the permalink settings page, %2$s resolves to the closing tag of the link */
            
__'You can fix this on the %1$sPermalink settings page%2$s.''wordpress-seo' ),
            
'<a href="' admin_url'options-permalink.php' ) . '">',
            
'</a>'
        
);

        
$notification_options = array(
            
'type'         => Yoast_Notification::WARNING,
            
'id'           => 'wpseo-dismiss-permalink-notice',
            
'capabilities' => 'wpseo_manage_options',
            
'priority'     => 0.8,
        );

        
$notification = new Yoast_Notification$info_message$notification_options );

        
$notification_center Yoast_Notification_Center::get();
        if ( ! 
$this->has_postname_in_permalink() ) {
            
$notification_center->add_notification$notification );
        }
        else {
            
$notification_center->remove_notification$notification );
        }
    }

    
/**
     * Are page comments enabled.
     *
     * @return bool
     */
    
public function has_page_comments() {
        return 
'1' === get_option'page_comments' );
    }

    
/**
     * Shows a notice to the user if they have Google Analytics for WordPress 5.4.3 installed because it causes an error
     * on the google search console page.
     */
    
public function ga_compatibility_notice() {

        
$notification        $this->get_compatibility_notification();
        
$notification_center Yoast_Notification_Center::get();

        if ( 
defined'GAWP_VERSION' ) && '5.4.3' === GAWP_VERSION ) {
            
$notification_center->add_notification$notification );
        }
        else {
            
$notification_center->remove_notification$notification );
        }
    }

    
/**
     * Build compatibility problem notification.
     *
     * @return Yoast_Notification
     */
    
private function get_compatibility_notification() {
        
$info_message sprintf(
            
/* translators: %1$s expands to Yoast SEO, %2$s expands to 5.4.3, %3$s expands to Google Analytics by Yoast */
            
__'%1$s detected you are using version %2$s of %3$s, please update to the latest version to prevent compatibility issues.''wordpress-seo' ),
            
'Yoast SEO',
            
'5.4.3',
            
'Google Analytics by Yoast'
        
);

        return new 
Yoast_Notification(
            
$info_message,
            array(
                
'id'   => 'gawp-compatibility-notice',
                
'type' => Yoast_Notification::ERROR,
            )
        );
    }

    
/**
     * Determines whether a suggested plugins notification needs to be displayed.
     *
     * @return void
     */
    
public function yoast_plugin_suggestions_notification() {
        
$checker             = new WPSEO_Plugin_Availability();
        
$notification_center Yoast_Notification_Center::get();

        
// Get all Yoast plugins that have dependencies.
        
$plugins $checker->get_plugins_with_dependencies();

        foreach ( 
$plugins as $plugin_name => $plugin ) {
            
$dependency_names $checker->get_dependency_names$plugin );
            
$notification     $this->get_yoast_seo_suggested_plugins_notification$plugin_name$plugin$dependency_names[0] );

            if ( 
$checker->dependencies_are_satisfied$plugin ) && ! $checker->is_installed$plugin ) ) {
                
$notification_center->add_notification$notification );

                continue;
            }

            
$notification_center->remove_notification$notification );
        }
    }

    
/**
     * Build Yoast SEO suggested plugins notification.
     *
     * @param string $name            The plugin name to use for the unique ID.
     * @param array  $plugin          The plugin to retrieve the data from.
     * @param string $dependency_name The name of the dependency.
     *
     * @return Yoast_Notification The notification containing the suggested plugin.
     */
    
private function get_yoast_seo_suggested_plugins_notification$name$plugin$dependency_name ) {
        
$info_message sprintf(
            
/* translators: %1$s expands to Yoast SEO, %2$s expands to the plugin version, %3$s expands to the plugin name */
            
__'%1$s and %2$s can work together a lot better by adding a helper plugin. Please install %3$s to make your life better.''wordpress-seo' ),
            
'Yoast SEO',
            
$dependency_name,
            
sprintf'<a href="%s">%s</a>'$plugin['url'], $plugin['title'] )
        );

        return new 
Yoast_Notification(
            
$info_message,
            array(
                
'id'   => 'wpseo-suggested-plugin-' $name,
                
'type' => Yoast_Notification::WARNING,
            )
        );
    }

    
/**
     * Add an alert if outdated versions of Yoast SEO plugins are running.
     */
    
public function yoast_plugin_compatibility_notification() {
        
$compatibility_checker = new WPSEO_Plugin_CompatibilityWPSEO_VERSION );
        
$plugins               $compatibility_checker->get_installed_plugins_compatibility();

        
$notification_center Yoast_Notification_Center::get();

        foreach ( 
$plugins as $name => $plugin ) {
            
$type         = ( $plugin['active'] ) ? Yoast_Notification::ERROR Yoast_Notification::WARNING;
            
$notification $this->get_yoast_seo_compatibility_notification$name$plugin$type );

            if ( 
$plugin['active'] && $plugin['compatible'] === false ) {
                
$notification_center->add_notification$notification );

                continue;
            }

            
$notification_center->remove_notification$notification );
        }
    }

    
/**
     * Build Yoast SEO compatibility problem notification.
     *
     * @param string $name   The plugin name to use for the unique ID.
     * @param array  $plugin The plugin to retrieve the data from.
     * @param string $level  The severity level to use for the notification.
     *
     * @return Yoast_Notification
     */
    
private function get_yoast_seo_compatibility_notification$name$plugin$level Yoast_Notification::WARNING ) {
        
$info_message sprintf(
            
/* translators: %1$s expands to Yoast SEO, %2$s expands to the plugin version, %3$s expands to the plugin name */
            
__'%1$s detected you are using version %2$s of %3$s, please update to the latest version to prevent compatibility issues.''wordpress-seo' ),
            
'Yoast SEO',
            
$plugin['version'],
            
$plugin['title']
        );

        return new 
Yoast_Notification(
            
$info_message,
            array(
                
'id'   => 'wpseo-outdated-yoast-seo-plugin-' $name,
                
'type' => $level,
            )
        );
    }

    
/**
     * Shows the notice for recalculating the post. the Notice will only be shown if the user hasn't dismissed it before.
     */
    
public function recalculate_notice() {
        
// Just a return, because we want to temporary disable this notice (#3998 and #4532).
        
return;

        if ( 
filter_inputINPUT_GET'recalculate' ) === '1' ) {
            
update_option'wpseo_dismiss_recalculate''1' );

            return;
        }

        if ( ! 
WPSEO_Capability_Utils::current_user_can'wpseo_manage_options' ) ) {
            return;
        }

        if ( 
$this->is_site_notice_dismissed'wpseo_dismiss_recalculate' ) ) {
            return;
        }

        
Yoast_Notification_Center::get()->add_notification(
            new 
Yoast_Notification(
                
sprintf(
                    
/* translators: 1: is a link to 'admin_url / admin.php?page=wpseo_tools&recalculate=1' 2: closing link tag */
                    
__'We\'ve updated our SEO score algorithm. %1$sRecalculate the SEO scores%2$s for all posts and pages.''wordpress-seo' ),
                    
'<a href="' admin_url'admin.php?page=wpseo_tools&recalculate=1' ) . '">',
                    
'</a>'
                
),
                array(
                    
'type'  => 'updated yoast-dismissible',
                    
'id'    => 'wpseo-dismiss-recalculate',
                    
'nonce' => wp_create_nonce'wpseo-dismiss-recalculate' ),
                )
            )
        );
    }

    
/**
     * Creates an unsupported PHP version notification in the notification center.
     *
     * @return void
     */
    
public function unsupported_php_notice() {
        
$notification_center Yoast_Notification_Center::get();
        
$notification_center->remove_notification_by_id'wpseo-dismiss-unsupported-php' );
    }

    
/**
     * Creates a WordPress upgrade notification in the notification center.
     *
     * @return void
     */
    
public function wordpress_upgrade_notice() {
        global 
$wp_version;

        
$wordpress_less_than_50 version_compare$wp_version'5.0''<' );
        
$wordpress_less_than_52 version_compare$wp_version'5.2''<' );

        
$notification_center Yoast_Notification_Center::get();

        
$message sprintf(
            
/* translators: %1$s expands to an opening strong tag, %2$s expands to a closing strong tag, %3$s expands to a html break, %4$s expands to Yoast, %5$s expands to Yoast SEO, %6$s expands to 5.2, %7$s expands to 5.3 */
            
__(
                
'%1$sUpgrade WordPress to the most recent version%2$s%3$sWe’ve noticed that you’re not on the latest WordPress version, which might cause an issue soon. %4$s (for reasons of security and stability) only supports the current and previous version of WordPress. When the next version of WordPress comes out, that means that we will support WordPress %6$s and %7$s. This means you will not get any updates to %5$s until you update your WordPress, so please make sure to upgrade to the latest WordPress version soon!%3$s%3$s',
                
'wordpress-seo'
            
),
            
'<strong>',
            
'</strong>',
            
'<br/>',
            
'Yoast',
            
'Yoast SEO',
            
'5.2',
            
'5.3'
        
);
        if ( 
$wordpress_less_than_50 ) {
            
$message .= sprintf(
                
/* translators: %1$s expands to Yoast SEO, %2$s expands to 5.0 */
                
__(
                    
'If you’ve held off on updating to %2$s and higher because of the new Gutenberg editor, please install the Classic editor plugin. It will give you the same editing experience you have now, but also the security of newer versions of WordPress and %1$s.',
                    
'wordpress-seo'
                
),
                
'Yoast SEO',
                
'5.0'
            
);
        }
        
$message .= '<br/><br/>';
        
$message .= sprintf(
            
/* translators: %1$s expands to an opening anchor tag, %2$s expands to a closing anchor tag */
            
__(
                
'Read %1$sthis post for more information about why we’re not supporting older versions.%2$s',
                
'wordpress-seo'
            
),
            
'<a href="' WPSEO_Shortlinker::get'https://yoa.st/old-wp-support' ) . '" target="_blank" rel="nofollow">',
            
'</a>'
        
);

        
$notification = new Yoast_Notification(
            
$message,
            array(
                
'type' => Yoast_Notification::ERROR,
                
'id'   => 'wpseo-dismiss-wordpress-upgrade',
            )
        );

        if ( 
$wordpress_less_than_52 ) {
            
$notification_center->add_notification$notification );
            return;
        }
        
$notification_center->remove_notification$notification );
    }

    
/**
     * Check if the user has dismissed the given notice (by $notice_name).
     *
     * @param string $notice_name The name of the notice that might be dismissed.
     *
     * @return bool
     */
    
private function is_site_notice_dismissed$notice_name ) {
        return 
'1' === get_option$notice_nametrue );
    }

    
/**
     * Helper to verify if the user is currently visiting one of our admin pages.
     *
     * @return bool
     */
    
private function on_wpseo_admin_page() {
        return 
'admin.php' === $this->pagenow && strposfilter_inputINPUT_GET'page' ), 'wpseo' ) === 0;
    }

    
/**
     * Determine whether we should load the meta box class and if so, load it.
     */
    
private function load_meta_boxes() {

        
$is_editor      WPSEO_Metabox::is_post_overview$this->pagenow ) || WPSEO_Metabox::is_post_edit$this->pagenow );
        
$is_inline_save filter_inputINPUT_POST'action' ) === 'inline-save';

        
/**
         * Filter: 'wpseo_always_register_metaboxes_on_admin' - Allow developers to change whether
         * the WPSEO metaboxes are only registered on the typical pages (lean loading) or always
         * registered when in admin.
         *
         * @api bool Whether to always register the metaboxes or not. Defaults to false.
         */
        
if ( $is_editor || $is_inline_save || apply_filters'wpseo_always_register_metaboxes_on_admin'false )
        ) {
            
$GLOBALS['wpseo_metabox']      = new WPSEO_Metabox();
            
$GLOBALS['wpseo_meta_columns'] = new WPSEO_Meta_Columns();
        }
    }

    
/**
     * Determine if we should load our taxonomy edit class and if so, load it.
     */
    
private function load_taxonomy_class() {
        if (
            
WPSEO_Taxonomy::is_term_edit$this->pagenow )
            || 
WPSEO_Taxonomy::is_term_overview$this->pagenow )
        ) {
            new 
WPSEO_Taxonomy();
        }
    }

    
/**
     * Determine if we should load our admin pages class and if so, load it.
     *
     * Loads admin page class for all admin pages starting with `wpseo_`.
     */
    
private function load_admin_user_class() {
        if ( 
in_array$this->pagenow, array( 'user-edit.php''profile.php' ), true )
            && 
current_user_can'edit_users' )
        ) {
            new 
WPSEO_Admin_User_Profile();
        }
    }

    
/**
     * Determine if we should load our admin pages class and if so, load it.
     *
     * Loads admin page class for all admin pages starting with `wpseo_`.
     */
    
private function load_admin_page_class() {

        if ( 
$this->on_wpseo_admin_page() ) {
            
// For backwards compatabilty, this still needs a global, for now...
            
$GLOBALS['wpseo_admin_pages'] = new WPSEO_Admin_Pages();

            
// Only register the yoast i18n when the page is a Yoast SEO page.
            
if ( WPSEO_Utils::is_yoast_seo_free_pagefilter_inputINPUT_GET'page' ) ) ) {
                
$this->register_i18n_promo_class();
                
$this->register_premium_upsell_admin_block();
            }
        }
    }

    
/**
     * Loads the plugin suggestions.
     */
    
private function load_plugin_suggestions() {
        
$suggestions = new WPSEO_Suggested_Plugins( new WPSEO_Plugin_Availability(), Yoast_Notification_Center::get() );
        
$suggestions->register_hooks();
    }

    
/**
     * Registers the Premium Upsell Admin Block.
     *
     * @return void
     */
    
private function register_premium_upsell_admin_block() {
        if ( ! 
WPSEO_Utils::is_yoast_seo_premium() ) {
            
$upsell_block = new WPSEO_Premium_Upsell_Admin_Block'wpseo_admin_promo_footer' );
            
$upsell_block->register_hooks();
        }
    }

    
/**
     * Registers the promotion class for our GlotPress instance, then creates a notification with the i18n promo.
     *
     * @link https://github.com/Yoast/i18n-module
     */
    
private function register_i18n_promo_class() {
        
// BC, because an older version of the i18n-module didn't have this class.
        
$i18n_module = new Yoast_I18n_WordPressOrg_v3(
            array(
                
'textdomain'  => 'wordpress-seo',
                
'plugin_name' => 'Yoast SEO',
                
'hook'        => 'wpseo_admin_promo_footer',
            ),
            
false
        
);

        
$message $i18n_module->get_promo_message();

        if ( 
$message !== '' ) {
            
$message .= $i18n_module->get_dismiss_i18n_message_button();
        }

        
$notification_center Yoast_Notification_Center::get();

        
$notification = new Yoast_Notification(
            
$message,
            array(
                
'type' => Yoast_Notification::WARNING,
                
'id'   => 'i18nModuleTranslationAssistance',
            )
        );

        if ( 
$message ) {
            
$notification_center->add_notification$notification );

            return;
        }

        
$notification_center->remove_notification$notification );
    }

    
/**
     * See if we should start our XML Sitemaps Admin class.
     */
    
private function load_xml_sitemaps_admin() {
        if ( 
WPSEO_Options::get'enable_xml_sitemap'false ) ) {
            new 
WPSEO_Sitemaps_Admin();
        }
    }

    
/**
     * Check if the site is set to be publicly visible.
     *
     * @return bool
     */
    
private function is_blog_public() {
        return 
'1' === (string) get_option'blog_public' );
    }

    
/**
     * Shows deprecation warnings to the user if a plugin has registered a filter we have deprecated.
     */
    
public function show_hook_deprecation_warnings() {
        global 
$wp_filter;

        if ( 
wp_doing_ajax() ) {
            return;
        }

        
// WordPress hooks that have been deprecated since a Yoast SEO version.
        
$deprecated_filters = array(
            
'wpseo_metakey' => array(
                
'version'     => '6.3',
                
'alternative' => null,
            ),
            
'wpseo_metakeywords' => array(
                
'version'     => '6.3',
                
'alternative' => null,
            ),
            
'wpseo_stopwords' => array(
                
'version'     => '7.0',
                
'alternative' => null,
            ),
            
'wpseo_redirect_orphan_attachment' => array(
                
'version'     => '7.0',
                
'alternative' => null,
            ),
            
'wpseo_genesis_force_adjacent_rel_home' => array(
                
'version'     => '9.4',
                
'alternative' => null,
            ),
        );

        
// Determine which filters have been registered.
        
$deprecated_notices array_intersect(
            
array_keys$deprecated_filters ),
            
array_keys$wp_filter )
        );

        
// Show notice for each deprecated filter or action that has been registered.
        
foreach ( $deprecated_notices as $deprecated_filter ) {
            
$deprecation_info $deprecated_filters$deprecated_filter ];
            
_deprecated_hook(
                
$deprecated_filter,
                
'WPSEO ' $deprecation_info['version'],
                
$deprecation_info['alternative']
            );
        }
    }

    
/**
     * Check if the permalink uses %postname%.
     *
     * @return bool
     */
    
private function has_postname_in_permalink() {
        return ( 
false !== strposget_option'permalink_structure' ), '%postname%' ) );
    }

    
/**
     * Shows a notice on the permalink settings page.
     */
    
public function permalink_settings_notice() {
        global 
$pagenow;

        if ( 
$pagenow === 'options-permalink.php' ) {
            
$warning esc_html__'WARNING:''wordpress-seo' );
            
/* translators: %1$s and %2$s expand to <i> items to emphasize the word in the middle. */
            
$message esc_html__'Changing your permalinks settings can seriously impact your search engine visibility. It should almost %1$s never %2$s be done on a live website.''wordpress-seo' );
            
$link    esc_html__'Learn about why permalinks are important for SEO.''wordpress-seo' );
            
$url     WPSEO_Shortlinker::get'https://yoa.st/why-permalinks/' );

            echo 
'<div class="notice notice-warning"><p><strong>' $warning '</strong><br>' sprintf$message'<i>''</i>' ) . '<br><a href="' $url '" target="_blank">' $link '</a></p></div>';
        }
    }
}