skeeks / yii2-mobile-detect
Mobile Detect extension for Yii2
Installs: 220 881
Dependents: 2
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 6
Open Issues: 0
Type:yii2-extension
Requires
- mobiledetect/mobiledetectlib: ^2.8
- yiisoft/yii2: ^2.0
This package is auto-updated.
Last update: 2024-10-19 18:30:39 UTC
README
This extension provides an Yii2 component wrapper for Mobile_Detect PHP class and can be used to detect whether a device is mobile one in your Yii2 application.
Installation
The preferred way to install this extension is through Composer.
Either run
php composer.phar require --prefer-dist skeeks/yii2-mobile-detect
or add
"skeeks/yii2-mobile-detect": "^1.0.2"
to the require
section of your composer.json
file.
Usage
-
Add
mobileDetect
component to your Yii2 configuration like this:'components' => [ 'mobileDetect' => [ 'class' => '\skeeks\yii2\mobiledetect\MobileDetect' ] ]
-
Use
mobileDetect
component as Mobile_Detect PHP class:echo \Yii::$app->mobileDetect->isMobile(); echo \Yii::$app->mobileDetect->isTablet(); echo \Yii::$app->mobileDetect->isDesctop();
//version >= 1.0.1 echo \skeeks\yii2\mobiledetect\MobileDetect::getInstance()->isMobile();
SkeekS CMS (Yii2) — quickly, easily and effectively!
skeeks.com | cms.skeeks.com