- Compatible XF Versions
- 2.1, 2.2
- Visible Branding
- No
- Additional Requirements
- php 7.0+
A light-weight shim around Mobile_detect for XenForo 2
Usage (in templates)
The add-on injects the global variable
Not Mobile
Not Firefox
Not Chrome
</xf:if>
Usage (in php)
XF2.1 Page caching
The integration mobile detection with XF2.1+ full-page caching, add to the config.php this;
Contributing features or bug fixes
Please create a Github Pull request via the "More information." link.
Usage (in templates)
The add-on injects the global variable
$xf.mobileDetect
, check that the variable is set before calling any methods to prevent errors during upgrades or if the add-on is disabled.
Code:
<xf:if is="$xf.mobileDetect && $xf.mobileDetect.isMobile()">
Is Mobile
<xf:else />
Not Mobile
Code:
</xf:if>
<xf:if is="$xf.mobileDetect && $xf.mobileDetect.is('Firefox')">
Is Firefox
<xf:else />
Code:
</xf:if>
<xf:if is="$xf.mobileDetect && $xf.mobileDetect.is('Chrome')">
Is Chrome
<xf:else />
</xf:if>
Usage (in php)
Code:
$mobileDetect = \SV\BrowserDetection\Listener::getMobileDetection();
$isMobile = $mobileDetect && $mobileDetect->isMobile() ? "_m1" : "_m0";
The integration mobile detection with XF2.1+ full-page caching, add to the config.php this;
Code:
$config['pageCache']['onSetup'] = function (\XF\PageCache $pageCache) {
$pageCache->setCacheIdGenerator(function(\XF\Http\Request $request) {
return \SV\BrowserDetection\CacheHelper::getPageCacheId($request);
});
};
Please create a Github Pull request via the "More information." link.