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

Yoast / wordpress-seo / 83feb67068b7564d9d5a1a9944da54e6859a38e1

28 Jul 2025 08:10AM UTC coverage: 52.641% (-0.02%) from 52.665%
83feb67068b7564d9d5a1a9944da54e6859a38e1

Pull #22460

github

vraja-pro
Merge branch 'trunk' into feature/redirection20
Pull Request #22460: Feature/redirection20

8341 of 15076 branches covered (55.33%)

Branch coverage included in aggregate %.

7 of 105 new or added lines in 21 files covered. (6.67%)

3 existing lines in 1 file now uncovered.

31020 of 59696 relevant lines covered (51.96%)

39997.1 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() {
×
42
                add_action( 'init', [ $this, 'init' ], 20 );
×
43

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
         */
52
        public function init() {
×
53
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
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.
57
                $page_exceptions    = in_array(
×
58
                        $page,
×
59
                        [
×
60
                                Settings_Integration::PAGE,
×
61
                                Academy_Integration::PAGE,
×
62
                                Support_Integration::PAGE,
×
63
                                Plans_Page_Integration::PAGE,
×
NEW
64
                                Redirects_Page_Integration::PAGE,
×
65
                        ],
×
66
                        true
×
67
                );
×
68
                $new_dashboard_page = ( $page === General_Page_Integration::PAGE && ! is_network_admin() );
×
69
                if ( $page_exceptions || $new_dashboard_page ) {
×
70
                        // Bail, this is managed in the applicable integration.
71
                        return;
×
72
                }
73
                add_action( 'admin_enqueue_scripts', [ $this, 'config_page_scripts' ] );
×
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' );
×
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' );
×
99
                wp_enqueue_script( 'thickbox' );
×
100

101
                $alert_dismissal_action = YoastSEO()->classes->get( Alert_Dismissal_Action::class );
×
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(),
×
108
                        'currentPromotions'              => YoastSEO()->classes->get( Promotion_Manager::class )
×
109
                                ->get_current_promotions(),
×
110
                        'webinarIntroFirstTimeConfigUrl' => $this->get_webinar_shortlink(),
×
111
                        'linkParams'                     => WPSEO_Shortlinker::get_query_params(),
×
112
                        'pluginUrl'                      => plugins_url( '', WPSEO_FILE ),
×
113
                ];
×
114

115
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
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 ) ) {
×
119
                        wp_enqueue_media();
×
120

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

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

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

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

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

145
                if ( $tool === 'bulk-editor' ) {
×
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() ) {
×
157
                        return WPSEO_Shortlinker::get( 'https://yoa.st/webinar-intro-first-time-config-premium' );
×
158
                }
159

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