Automattic\Jetpack\Device_Detection
User_Agent_Info::is_kindle_touch()
Detects if the current browser is the Kindle Touch Native browser
Mozilla/5.0 (X11; U; Linux armv7l like Android; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/533.2+ Kindle/3.0+
Метод класса: User_Agent_Info{}
Хуков нет.
Возвращает
true|false
. true if the browser is Kindle monochrome Native browser otherwise false
Использование
$result = User_Agent_Info::is_kindle_touch();
Код User_Agent_Info::is_kindle_touch() User Agent Info::is kindle touch WPSCache 1.12.4
public static function is_kindle_touch() { 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_kindle_touch = strpos( $agent, 'kindle/3.0+' ); if ( false !== $pos_kindle_touch && false === self::is_kindle_fire() ) { return true; } else { return false; } }