candasm/yii1-mobile-detect-component

MobileDetect library for YiiFramework 1.x

1.0.2 2017-02-13 08:25 UTC

This package is auto-updated.

Last update: 2024-04-10 04:41:23 UTC


README

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/"
},