• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Yoast / wordpress-seo / defe33a3b9bceedef266c312754d9acf5c811177

14 Jul 2025 11:24AM UTC coverage: 53.858% (+0.4%) from 53.412%
defe33a3b9bceedef266c312754d9acf5c811177

push

github

thijsoo
Merge branch 'trunk' of github.com:Yoast/wordpress-seo into feature/redirection20

# Conflicts:
#	admin/class-config.php

8246 of 14361 branches covered (57.42%)

Branch coverage included in aggregate %.

162 of 253 new or added lines in 36 files covered. (64.03%)

81 existing lines in 18 files now uncovered.

30489 of 57559 relevant lines covered (52.97%)

41481.99 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/admin/class-config.php
1
<?php
2
/**
3
 * WPSEO plugin file.
4
 *
5
 * @package WPSEO\Admin
6
 */
7

8
use Yoast\WP\SEO\Actions\Alert_Dismissal_Action;
9
use Yoast\WP\SEO\General\User_Interface\General_Page_Integration;
10
use Yoast\WP\SEO\Integrations\Academy_Integration;
11
use Yoast\WP\SEO\Integrations\Admin\Redirects_Page_Integration;
12
use Yoast\WP\SEO\Integrations\Settings_Integration;
13
use Yoast\WP\SEO\Integrations\Support_Integration;
14
use Yoast\WP\SEO\Plans\User_Interface\Plans_Page_Integration;
15
use Yoast\WP\SEO\Promotions\Application\Promotion_Manager;
16

17
/**
18
 * Class WPSEO_Admin_Pages.
19
 *
20
 * Class with functionality for the Yoast SEO admin pages.
21
 */
22
class WPSEO_Admin_Pages {
23

24
        /**
25
         * The option in use for the current admin page.
26
         *
27
         * @var string
28
         */
29
        public $currentoption = 'wpseo';
30

31
        /**
32
         * Holds the asset manager.
33
         *
34
         * @var WPSEO_Admin_Asset_Manager
35
         */
36
        private $asset_manager;
37

38
        /**
39
         * Class constructor, which basically only hooks the init function on the init hook.
40
         */
41
        public function __construct() {
×
UNCOV
42
                add_action( 'init', [ $this, 'init' ], 20 );
×
43

UNCOV
44
                $this->asset_manager = new WPSEO_Admin_Asset_Manager();
×
45
        }
46

47
        /**
48
         * Make sure the needed scripts are loaded for admin pages.
49
         *
50
         * @return void
51
         */
UNCOV
52
        public function init() {
×
53
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
UNCOV
54
                $page = isset( $_GET['page'] ) && is_string( $_GET['page'] ) ? sanitize_text_field( wp_unslash( $_GET['page'] ) ) : '';
×
55

56
                // Don't load the scripts for the following pages.
NEW
57
                $page_exceptions    = in_array(
×
NEW
58
                        $page,
×
NEW
59
                        [
×
NEW
60
                                Settings_Integration::PAGE,
×
NEW
61
                                Academy_Integration::PAGE,
×
NEW
62
                                Support_Integration::PAGE,
×
NEW
63
                                Plans_Page_Integration::PAGE,
×
NEW
64
                                Redirects_Page_Integration::PAGE
×
NEW
65
                        ],
×
NEW
66
                        true
×
NEW
67
                );
×
UNCOV
68
                $new_dashboard_page = ( $page === General_Page_Integration::PAGE && ! is_network_admin() );
×
UNCOV
69
                if ( $page_exceptions || $new_dashboard_page ) {
×
70
                        // Bail, this is managed in the applicable integration.
UNCOV
71
                        return;
×
72
                }
73
                add_action( 'admin_enqueue_scripts', [ $this, 'config_page_scripts' ] );
×
UNCOV
74
                add_action( 'admin_enqueue_scripts', [ $this, 'config_page_styles' ] );
×
75
        }
76

77
        /**
78
         * Loads the required styles for the config page.
79
         *
80
         * @return void
81
         */
82
        public function config_page_styles() {
×
83
                wp_enqueue_style( 'dashboard' );
×
84
                wp_enqueue_style( 'thickbox' );
×
85
                wp_enqueue_style( 'global' );
×
86
                wp_enqueue_style( 'wp-admin' );
×
87
                $this->asset_manager->enqueue_style( 'admin-css' );
×
UNCOV
88
                $this->asset_manager->enqueue_style( 'monorepo' );
×
89
        }
90

91
        /**
92
         * Loads the required scripts for the config page.
93
         *
94
         * @return void
95
         */
96
        public function config_page_scripts() {
×
97
                $this->asset_manager->enqueue_script( 'settings' );
×
98
                wp_enqueue_script( 'dashboard' );
×
UNCOV
99
                wp_enqueue_script( 'thickbox' );
×
100

101
                $alert_dismissal_action = YoastSEO()->classes->get( Alert_Dismissal_Action::class );
×
UNCOV
102
                $dismissed_alerts       = $alert_dismissal_action->all_dismissed();
×
103

104
                $script_data = [
×
105
                        'dismissedAlerts'                => $dismissed_alerts,
×
106
                        'isRtl'                          => is_rtl(),
×
107
                        'isPremium'                      => YoastSEO()->helpers->product->is_premium(),
×
NEW
108
                        'currentPromotions'              => YoastSEO()->classes->get( Promotion_Manager::class )
×
NEW
109
                                ->get_current_promotions(),
×
110
                        'webinarIntroFirstTimeConfigUrl' => $this->get_webinar_shortlink(),
×
111
                        'linkParams'                     => WPSEO_Shortlinker::get_query_params(),
×
112
                        'pluginUrl'                      => plugins_url( '', WPSEO_FILE ),
×
UNCOV
113
                ];
×
114

115
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
UNCOV
116
                $page = isset( $_GET['page'] ) && is_string( $_GET['page'] ) ? sanitize_text_field( wp_unslash( $_GET['page'] ) ) : '';
×
117

118
                if ( in_array( $page, [ WPSEO_Admin::PAGE_IDENTIFIER, 'wpseo_workouts' ], true ) ) {
×
UNCOV
119
                        wp_enqueue_media();
×
120

UNCOV
121
                        $script_data['userEditUrl'] = add_query_arg( 'user_id', '{user_id}', admin_url( 'user-edit.php' ) );
×
122
                }
123

124
                if ( $page === 'wpseo_tools' ) {
×
UNCOV
125
                        $this->enqueue_tools_scripts();
×
126
                }
127

128
                $this->asset_manager->localize_script( 'settings', 'wpseoScriptData', $script_data );
×
UNCOV
129
                $this->asset_manager->enqueue_user_language_script();
×
130
        }
131

132
        /**
133
         * Enqueues and handles all the tool dependencies.
134
         *
135
         * @return void
136
         */
UNCOV
137
        private function enqueue_tools_scripts() {
×
138
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
UNCOV
139
                $tool = isset( $_GET['tool'] ) && is_string( $_GET['tool'] ) ? sanitize_text_field( wp_unslash( $_GET['tool'] ) ) : '';
×
140

141
                if ( empty( $tool ) ) {
×
UNCOV
142
                        $this->asset_manager->enqueue_script( 'yoast-seo' );
×
143
                }
144

145
                if ( $tool === 'bulk-editor' ) {
×
UNCOV
146
                        $this->asset_manager->enqueue_script( 'bulk-editor' );
×
147
                }
148
        }
149

150
        /**
151
         * Returns the appropriate shortlink for the Webinar.
152
         *
153
         * @return string The shortlink for the Webinar.
154
         */
155
        private function get_webinar_shortlink() {
×
156
                if ( YoastSEO()->helpers->product->is_premium() ) {
×
UNCOV
157
                        return WPSEO_Shortlinker::get( 'https://yoa.st/webinar-intro-first-time-config-premium' );
×
158
                }
159

UNCOV
160
                return WPSEO_Shortlinker::get( 'https://yoa.st/webinar-intro-first-time-config' );
×
161
        }
162
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc