• A valid XenForo Licence validation token will be required to complete signup and purchasing.
    This may retrieve this from the XenForo Customer Area.
  • All XenForo 2.3+ add-ons require at least php 8.0, recommend php 8.2+
    All XenForo 2.2+ add-ons require at least php 7.2, recommend php 8.x
    All XenForo 2.0-2.1 add-ons require at least php 5.6, recommend php 7.x.
    The Standard Library add-on is also required.
    Older php versions are not supported, and add-ons will either refuse to install or fail to function.
  • Automatic discounts are applied for orders above $100 USD (10%) or for early renewals (5%)

Standard Library 1.4.0

Change log

  • Bundle moment.js 2.29.1
  • Extract count down/up timer html/javascript from Vote Tally & Notice Time Replacables add-ons, this includes singular time.<part> phrases.

    Example usage (generates html & loads javascript);
    PHP:
    $func = \XF::$versionId >= 2010370 ? 'func' : 'fn';
    return $this->app->templater()->$func('sv_relative_timestamp', [
        $now->getTimestamp(), $other->getTimestamp(), // now and other date time obj
        0, $countUp, // maximum date parts and if allowed counting up
        'time-notice', // class added to the span
        'click', '< .notice-content | .notice-dismiss' // event to trigger and who trigger it on
    ]);
Back
Top