public function MobileDeviceDetection::isTablet in Mobile Device Detection 8.2
Same name and namespace in other branches
- 8.3 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection::isTablet()
- 8 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection::isTablet()
File
- src/
Object/ MobileDeviceDetection.php, line 93
Class
- MobileDeviceDetection
- MobileDeviceDetection object.
Namespace
Drupal\mobile_device_detection\ObjectCode
public function isTablet() {
return $this->object->type === 'tablet' ? TRUE : FALSE;
}