You are here

public function MobileDeviceDetection::isMobile in Mobile Device Detection 8.2

Same name and namespace in other branches
  1. 8.3 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection::isMobile()
  2. 8 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection::isMobile()

File

src/Object/MobileDeviceDetection.php, line 86

Class

MobileDeviceDetection
MobileDeviceDetection object.

Namespace

Drupal\mobile_device_detection\Object

Code

public function isMobile() {
  return $this->object->type === 'mobile' ? TRUE : FALSE;
}