alikdex/yii2-device-detect

Yii2 extension for Mobile-Detect library

Installs: 8 473

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 2

Open Issues: 0

Type:yii2-extension

0.0.1 2016-08-03 07:32 UTC

This package is auto-updated.

Last update: 2024-03-17 09:20:39 UTC


README

Yii2 extension for Mobile-Detect library.

To use it just require this extension in your composer.json file:

"alikdex/yii2-device-detect": "0.0.1",

And then add it to your components configuration in Yii2:

'bootstrap' => ['devicedetect'],
'components' => [
	'devicedetect' => [
		'class' => 'alikdex\devicedetect\DeviceDetect'
	],
]

Some basic detections are available in Yii's params:

var_dump(Yii::$app->params['devicedetect']);

array (size=3)
  'isMobile' => boolean false
  'isTablet' => boolean false
  'isDesktop' => boolean true

You can also use it from anywhere in your code, calling Mobile-Detect's API:

/*Detect a mobile device*/
\Yii::$app->devicedetect->isMobile();

/*Detect a tablet device*/
\Yii::$app->devicedetect->isTablet();

/*Check all available methods here: http://demo.mobiledetect.net/ */