candasm/yii1-mobile-detect-component

针对YiiFramework 1.x的MobileDetect库

1.0.2 2017-02-13 08:25 UTC

This package is auto-updated.

Last update: 2024-09-10 05:33:42 UTC


README

为Yii 1.x的MobileDetect组件

Latest Stable Version Build Status Total Downloads Coverage Status License

安装

在应用配置中

'components'=>array(
    ...

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

用法

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

更多详细信息请访问 MobileDetect 库。

#####注意:请不要忘记在composer.json文件中设置vendor-dir,以适用于YiiFramework 1.1.x版本。

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