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