Lines Matching full:mobile
31 use DeviceDetector\Parser\Device\Mobile; alias
212 $this->addDeviceParser(new Mobile());
335 …eeded if we want bots to be processed as a simple clients. So we can detect if it is mobile client,
373 * Returns if the parsed UA is detected as a mobile device
379 // Client hints indicate a mobile device
384 // Mobile device types
397 // non mobile device types
407 // Check for browsers available for mobile devices only
438 // Check for browsers available for mobile devices only
617 * Clients might be browsers, Feed Readers, Mobile Apps, Media Players or
785 * Returns if the parsed UA contains the 'Android; Mobile;' fragment
791 $regex = 'Android( [.0-9]+)?; Mobile;|.*\-mobile$';
797 * Returns if the parsed UA contains the 'Android; Mobile VR;' fragment
803 $regex = 'Android( [.0-9]+)?; Mobile VR;| VR ';
821 * Returns if the parsed UA contains usage of a mobile only browser
865 * Tries to detect the client (e.g. browser, mobile app, ...)
955 * Chrome on Android passes the device type based on the keyword 'Mobile'
958 …* Note: We do not check for browser (family) here, as there might be mobile apps using Chrome, tha…
964 if ($this->matchUserAgent('(?:Mobile|eliboM)')) {
988 …* Some user agents simply contain the fragment 'Android; Mobile;', so we assume those devices as s…