You are here

function mobile_theme_detect_browscap in Mobile Theme 6

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

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

File

./mobile_theme.module, line 98

Code

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