Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)始,故人唐宰相鲁公,🆚开府南服,余以布衣从戎。明年,别公漳水湄。后明年,公以事过张睢阳庙及颜杲卿所尝往来处,悲歌慷慨,卒不负其言而从之游。今其诗具在,可考也。😭 HEX
HEX
Server: Apache
System: Linux webm006.cluster120.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User: studionolh (122383)
PHP: 7.3.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/studionolh/www/wp-content/plugins/wordpress-seo/src/deprecated/admin/license-page-manager.php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound -- Reason: The class is deprecated.

/**
 * Represents the values for a single Yoast Premium extension plugin.
 */
class WPSEO_License_Page_Manager implements WPSEO_WordPress_Integration {

	/**
	 * Version number for License Page Manager.
	 *
	 * @var string
	 */
	const VERSION_BACKWARDS_COMPATIBILITY = '2';

	/**
	 * Registers all hooks to WordPress.
	 *
	 * @deprecated 15.4
	 * @codeCoverageIgnore
	 */
	public function register_hooks() {
		_deprecated_function( __METHOD__, 'WPSEO 15.4' );
	}

	/**
	 * Removes the faulty set notifications.
	 *
	 * @deprecated 15.4
	 * @codeCoverageIgnore
	 */
	public function remove_faulty_notifications() {
		_deprecated_function( __METHOD__, 'WPSEO 15.4' );
	}

	/**
	 * Handles the response.
	 *
	 * @deprecated 15.4
	 * @codeCoverageIgnore
	 *
	 * @param array  $response          HTTP response.
	 * @param array  $request_arguments HTTP request arguments. Unused.
	 * @param string $url               The request URL.
	 *
	 * @return array The response array.
	 */
	public function handle_response( array $response, $request_arguments, $url ) {
		_deprecated_function( __METHOD__, 'WPSEO 15.4' );

		return $response;
	}

	/**
	 * Returns the license page to use based on the version number.
	 *
	 * @deprecated 15.4
	 * @codeCoverageIgnore
	 *
	 * @return string The page to use.
	 */
	public function get_license_page() {
		_deprecated_function( __METHOD__, '15.4' );

		return 'licenses';
	}

	/**
	 * Validates the extensions and show a notice for the invalid extensions.
	 *
	 * @deprecated 15.4
	 * @codeCoverageIgnore
	 */
	public function validate_extensions() {
		_deprecated_function( __METHOD__, '15.4' );
	}
}
// phpcs:enable