1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/plugins/GeoIp2/templates/_updaterNextRunTime.twig
Stefan Giehl f28c7fa6cb Removes GeoIp Legacy support (#15521)
* Removes GeoIp Legacy support

* move rendering provider configuration to the provider, to allow other providers to define an own one

* move related translations to GeoIp2 plugin

* Adds some UI tests

* Apply review feedback
2020-02-26 23:23:17 -08:00

9 خطوط
362 B
Twig

{% 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 %}