gulltour / mobiledetector
Yii2 extension for Mobile-Detect library
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-03-30 04:18:26 UTC
README
Yii2 extension for Mobile-Detect library Mobile detector
Detect type of device by information from request.
Notes
This extension based on mobiledetect project http://mobiledetect.net/.
See [here] (http://demo.mobiledetect.net/) for more documentation and examples.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist gulltour/mobiledetector "*"
or add
"gulltour/mobiledetector": "*"
to the require section of your composer.json
file.
Usage
Update config file config/web.php or common/main.php:
return [ ... 'components' => [ 'mobiledetect' => [ 'class' => 'gulltour\mobiledetect\MobileDetect', ], ], ... ];
Set event handler for detect type of device before run Application
// path/to/web/index.php $application = new yii\web\Application($config); Yii::$app->on(\yii\base\Application::EVENT_BEFORE_REQUEST,function($event){ Yii::$app->params['detect'] = [ 'isMobile' => Yii::$app->mobiledetect->isMobile(), 'isTablet' => Yii::$app->mobiledetect->isTablet(), ]; }); $application->run();