Automattic\Jetpack\Device_Detection

User_Agent_Info::is_wordpress_for_win8()public staticWPSCache 1.0

Detect if user agent is the WordPress.com Windows 8 app.

Method of the class: User_Agent_Info{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = User_Agent_Info::is_wordpress_for_win8();

User_Agent_Info::is_wordpress_for_win8() code WPSCache 1.12.0

public static function is_wordpress_for_win8() {
	if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) {
		return false;
	}

	$agent = strtolower( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating.
	$pos   = strpos( $agent, 'wp-windows8' );
	if ( false !== $pos ) {
		return true;
	} else {
		return false;
	}
}