This version adds the library Mobile_Detect and adds variables available in all templates to detect if the current page is viewed on a mobile/tablet device:
Code:
<xf:if is="$xf.isMobileBrowser">
    Visitor is using a tablet or a phone.
    <xf:if is="$xf.isTabletBrowser">
      Visitor is using a tablet.
    <xf:else />
      Visitor is using a phone.
    </xf:if>
  <xf:else />
    Visitor is using a computer/non-mobile device.
</xf:if>
  • This version adds CSV file parser library. Upgrade if an add-on you are using requires this version.
This release fixes a compatibility issue with [bd] API add-on. The issue could potentially affect other add-ons as well, if they use advanced class extension management using the \XF\Extension class, so it is recommended to install this version if you are using any older version of the AL Core package.
Back
Top Bottom