derralf / silverstripe-mobiledetect
Simple extension to detect mobile devices
Package info
github.com/derralf/silverstripe-mobiledetect
Type:silverstripe-vendormodule
pkg:composer/derralf/silverstripe-mobiledetect
dev-master / 2.x-dev
2024-03-06 13:49 UTC
Requires
This package is auto-updated.
Last update: 2026-03-06 18:00:48 UTC
README
Requirements
- silverstripe/cms ^5
- mobiledetect/mobiledetectlib ^4.8
For a SilverStripe 4.3 compatible version of this module, please see the 1.x release line 1.x release line.
Installation
Install a module via Composer
composer require derralf/silverstripe-mobiledetect
DataObject gets extended automatically
Usage
PHP:
if $this->isMobile() ...
if $this->isTablet() ...
if $this->isPhone() ...
Templates:
<% if $isMobile %> ...
<% if $isTablet %> ...
<% if $isPhone %> ...