Automattic\Jetpack\Device_Detection
User_Agent_Info::is_Nintendo_3DS()
Detects if the current browser is Nintendo 3DS handheld.
Example: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.US can differ in language, version and region
Метод класса: User_Agent_Info{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = User_Agent_Info::is_Nintendo_3DS();
Код User_Agent_Info::is_Nintendo_3DS() User Agent Info::is Nintendo 3DS WPSCache 1.12.4
public static function is_Nintendo_3DS() { if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { return false; } $ua = strtolower( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating. if ( strpos( $ua, 'nintendo 3ds' ) !== false ) { return true; } return false; }