ustmaestro/yii2-mobile-detect

Yii2 mobile dectect component

Installs: 1 150

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.0 2015-04-05 14:56 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:13:17 UTC


README

MobileDetect Yii2 Extension

This Extension based on Mobile_Detect class writed by Serban Ghita and Victor Stanciu

Install

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist ustmaestro/yii2-mobile-detect "dev-master"

or add

"ustmaestro/yii2-mobiledetect": "dev-master"

to the require section of your composer.json file.

Add your component inside the config/web.php file eg:

'components' => [
    ...

    'mobileDetect' => [
        'class' => 'ustmaestro\mobiledetect\MobileDetect'
    ],
    
    ...
];

Usage

  $detect = Yii::$app->mobileDetect;
  // call methods
  $detect->isMobile();
  $detect->isTablet();
  $detect->isIphone();
  ...