Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_updaterNextRunTime.twig « templates « GeoIp2 « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab5b273be600da63c3c650d5754f4c27f5e648c2 (plain)
1
2
3
4
5
6
7
8
9
{% if nextRunTime|default is not empty %}
  {% if date(nextRunTime.getTimestamp()) <= date() %}
      {{ 'GeoIp2_UpdaterScheduledForNextRun'|translate }}
  {% else %}
      {{ 'GeoIp2_UpdaterWillRunNext'|translate('<strong>' ~ nextRunTime.toString() ~ '</strong>')|raw }}
  {% endif %}
{% else %}
  {{ 'GeoIp2_UpdaterIsNotScheduledToRun'|translate }}
{% endif %}