Skip to content

webremote/Detect-Craft

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Detect plugin for Craft CMS

Detect is a fairly complete wrapper for the Mobile_Detect library by @serbanghita.

The plugin exposes most of Mobile_Detect's methods, and can be used in your Twig:

{{ craft.detect.isMobile ? 'I am mobile.' : 'I am not mobile.' }}

...or as a PHP service:

$isMobile = craft()->detect->isMobile();

Installation

  1. Unzip
  2. Drop the /detect folder inside your /craft/plugins directory
  3. Install in the Craft CP

Methods/usage

Device detection

isMobile

Detects all mobile devices, both phones and tablets

isTablet  
isPhone

Mobile OS detection

isiOS  
isAndroidOS  
isBlackBerryOS  
isPalmOS  
isSymbianOS  
isWindowsMobileOS   
isWindowsPhoneOS  

Other methods

is(key)

Test for anything, e.g. is('iphone')

match(pattern)

Test using regular expressions

version(component)

Get the version of a component, e.g. version('iPhone')

mobileGrade

Get browser grade (e.g. "A")

getScriptVersion

Prints the MobileDetect library's version

getUserAgent  
setUserAgent(userAgent)  
getMobileHeaders  
getHttpHeaders    
setHttpHeaders(httpHeaders)  
getCfHeaders  
setCfHeaders(cfHeaders)  

Changelog

1.0 (09.21.15)

Initial release

Disclaimer

This Craft CMS plugin is free, and you can do whatever you want with it. The author takes no responsibility for any data loss or other issues resulting from the use of this plugin.

Kindly report any issues here, but please note that no promises are made regarding response time, bug fixes or feature request implementations.

Pull requests are very welcome!

About

Craft CMS wrapper for the Mobile_Detect library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%