You are here

function mobile_theme_detect_browscap in Mobile Theme 7

Same name and namespace in other branches
  1. 6 mobile_theme.module \mobile_theme_detect_browscap()

Detect whether the user is on a mobile device by using Browscap.

File

./mobile_theme.module, line 145

Code

function mobile_theme_detect_browscap() {
  $browser = browscap_get_browser(NULL);
  if (isset($browser['ismobiledevice'])) {
    return $browser['ismobiledevice'] === TRUE;
  }
}