derralf / silverstripe-mobiledetect
用于检测移动设备的简单扩展
dev-master / 2.x-dev
2024-03-06 13:49 UTC
Requires
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 %> ...