Detect Device

Component ID

2829024

Component name

Detect Device

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

Drupal 8 module for detect devices and add cache context per device.

This is a lightweight mobile detection based on the [Mobile_Detect.php](http://mobiledetect.net/) library.

PHP examples
------------

### Check type device
``` php
$deviceDetector = Drupal::service('detect.device');
$deviceDetector->isMobile();
$deviceDetector->isTablet()
```