This Extension based on Mobile_Detect class writed by Serban Ghita and Victor Stanciu
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist ustmaestro/yii2-mobile-detect "dev-master"
or add
"ustmaestro/yii2-mobiledetect": "dev-master"
to the require section of your composer.json file.
Add your component inside the config/web.php file eg:
'components' => [
...
'mobileDetect' => [
'class' => 'ustmaestro\mobiledetect\MobileDetect'
],
...
];
$detect = Yii::$app->mobileDetect;
// call methods
$detect->isMobile();
$detect->isTablet();
$detect->isIphone();
...