Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.46 KB

README.md

File metadata and controls

39 lines (33 loc) · 1.46 KB

MobileDetect Component for Yii 1.x

Latest Stable Version Build Status Total Downloads Coverage Status License

Install

In app config:

'components'=>array(
    ...

    'mobileDetect' => array(
        'class' => 'application.vendors.candasm.yii1-mobile-detect-component.src.MobileDetectComponent'
    ),
    
    ...
);

Usage

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

For more information visit MobileDetect Library.

#####Note: Don't forget to set vendor-dir in composer.json file for YiiFramework 1.1.x versions.

"config":{
	"vendor-dir":"protected/vendor/"
},