dkeeper/yii2-mobiledetect

Detect type of device by information from request

Installs: 34 355

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 5

Forks: 4

Open Issues: 1

Type:yii2-extension

dev-master 2014-08-26 18:53 UTC

This package is not auto-updated.

Last update: 2024-03-25 23:10:24 UTC


README

Detect type of device by information from request.

Notes

This extension based on mobiledetect project http://mobiledetect.net/.

See [here] (https://github.com/serbanghita/Mobile-Detect/) and [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 dkeeper/yii2-mobiledetect "*"

or add

"dkeeper/yii2-mobiledetect": "*"

to the require section of your composer.json file.

Usage

Update config file config/web.php or common/main.php:

return [
    ...
    'components' => [
        'mobiledetect' => [
            'class' => 'dkeeper\mobiledetect\Detect',
        ],
    ],
    ...
];

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();