Automattic\Jetpack\Device_Detection
User_Agent_Info::is_TouchPad()
Detects if the current browser is the HP TouchPad default browser. This excludes phones wt WebOS.
TouchPad Emulator: Mozilla/5.0 (hp-desktop; Linux; hpwOS/2.0; U; it-IT) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 Desktop/1.0 TouchPad: Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.0; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 TouchPad/1.0
Метод класса: User_Agent_Info{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = User_Agent_Info::is_TouchPad();
Код User_Agent_Info::is_TouchPad() User Agent Info::is TouchPad WPSCache 2.0.0
public static function is_TouchPad() { if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { return false; } $http_user_agent = strtolower( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating. if ( false !== strpos( $http_user_agent, 'hp-tablet' ) || false !== strpos( $http_user_agent, 'hpwos' ) || false !== strpos( $http_user_agent, 'touchpad' ) ) { if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() ) { return false; } else { return true; } } else { return false; } }