%s', $install_url, $plugin['title'] ); } /** * Gets a visually hidden accessible message for links that open in a new browser tab. * * @return string The visually hidden accessible message. */ public static function get_new_tab_message() { return sprintf( '%s', esc_html__( '(Opens in a new browser tab)', 'wordpress-seo' ) ); } /* ********************* DEPRECATED METHODS ********************* */ /** * Determines whether or not the user has an invalid version of PHP installed. * * @deprecated 8.1 * @codeCoverageIgnore * * @return bool Whether or not PHP 5.2 or lower is installed. */ public static function is_supported_php_version_installed() { // Intentionally left blank. return true; } }