class MobileDeviceDetection in Mobile Device Detection 8
Same name and namespace in other branches
- 8.3 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection
- 8.2 src/Object/MobileDeviceDetection.php \Drupal\mobile_device_detection\Object\MobileDeviceDetection
Hierarchy
- class \Drupal\mobile_device_detection\Object\MobileDeviceDetectionObject
- class \Drupal\mobile_device_detection\Object\MobileDeviceDetection implements MobileDeviceDetectionInterface
Expanded class hierarchy of MobileDeviceDetection
1 string reference to 'MobileDeviceDetection'
1 service uses MobileDeviceDetection
File
- src/
Object/ MobileDeviceDetection.php, line 9
Namespace
Drupal\mobile_device_detection\ObjectView source
class MobileDeviceDetection extends MobileDeviceDetectionObject implements MobileDeviceDetectionInterface {
/**
* {@inheritdoc}
*/
public function __construct(MobileDeviceDetectionAttributes $attributes) {
parent::__construct($attributes);
}
/**
* {@inheritdoc}
*/
public function getObject() {
return parent::getObject();
}
/**
* {@inheritdoc}
*/
public function isMobile() {
return parent::isMobile();
}
/**
* {@inheritdoc}
*/
public function isTablet() {
return parent::isTablet();
}
}