PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 18.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v18.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / src / helpers / redirect-helper.php

redirect-helper.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.5, at src/helpers/redirect-helper.php

52 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Yoast\WP\SEO\Helpers;
4
5 /**
6 * A helper object for redirects.
7 */
8 class Redirect_Helper {
9
10 /**
11 * Wraps wp_redirect to allow testing for redirects.
12 *
13 * @codeCoverageIgnore It only wraps a WordPress function.
14 *
15 * @param string $location The path to redirect to.
16 * @param int $status The status code to use.
17 */
18 public function do_unsafe_redirect( $location, $status = 302 ) {
19 // phpcs:ignore WordPress.Security.SafeRedirect -- intentional, function has been renamed to make unsafe more clear.
20 \wp_redirect( $location, $status, 'Yoast SEO' );
21 exit;
22 }
23
24 /**
25 * Wraps wp_safe_redirect to allow testing for safe redirects.
26 *
27 * @codeCoverageIgnore It only wraps a WordPress function.
28 *
29 * @param string $location The path to redirect to.
30 * @param int $status The status code to use.
31 */
32 public function do_safe_redirect( $location, $status = 302 ) {
33 \wp_safe_redirect( $location, $status, 'Yoast SEO' );
34 exit;
35 }
36
37 /**
38 * Wraps wp_redirect to allow testing for redirects.
39 *
40 * @deprecated 16.x
41 * @codeCoverageIgnore It only wraps a WordPress function.
42 *
43 * @param string $location The path to redirect to.
44 * @param int $status The status code to use.
45 */
46 public function do_redirect( $location, $status = 302 ) {
47 \_deprecated_function( __METHOD__, 'WPSEO 16.x', 'Yoast\WP\SEO\Helpers\Redirect_Helper::do_unsafe_redirect' );
48
49 $this->do_unsafe_redirect( $location, $status );
50 }
51 }
52