- silverstripe/cms ^4
- mobiledetect/mobiledetectlib ^2
Install a module via Composer
composer require derralf/silverstripe-mobiledetect
DataObject gets extended automatically
PHP:
if $this->isMobile() ...
if $this->isTablet() ...
if $this->isPhone() ...
Templates:
<% if $isMobile %> ...
<% if $isTablet %> ...
<% if $isPhone %> ...