derralf/silverstripe-mobiledetect

用于检测移动设备的简单扩展

安装次数: 1,842

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 1

开放性问题: 0

类型:silverstripe-vendormodule

dev-master / 2.x-dev 2024-03-06 13:49 UTC

This package is auto-updated.

Last update: 2024-09-06 14:53:54 UTC


README

需求

  • silverstripe/cms ^5
  • mobiledetect/mobiledetectlib ^4.8

有关此模块的 SilverStripe 4.3 兼容版本,请参阅 1.x 版本分支 1.x 版本分支

安装

通过 Composer 安装模块

composer require derralf/silverstripe-mobiledetect

DataObject 会自动扩展

用法


PHP:

if $this->isMobile() ...

if $this->isTablet() ...

if $this->isPhone() ...


Templates:

<% if $isMobile %> ...

<% if $isTablet %> ...

<% if $isPhone %> ...