MobileDetect
MobileDetect copied to clipboard
Расширение для Yii MobileDetect
MobileDetect Yii Extension
This Extension based on Mobile_Detect class writed by Serban Ghita and Victor Stanciu
Install
In app config:
'components'=>array(
...
'mobileDetect' => array(
'class' => 'ext.MobileDetect.MobileDetect'
),
...
);
Usage
$detect = Yii::app()->mobileDetect;
// call methods
$detect->isMobile();
$detect->isTablet();
$detect->isIphone();
...