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

adminIndex.twig « templates « UserCountry « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 658bcc0b27de68088033018e552e4dab7b3d6b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'admin.twig' %}

{% set title %}{{ 'UserCountry_Geolocation'|translate }}{% endset %}

{% block content %}
{% import 'macros.twig' as piwik %}

<div piwik-content-intro>
    <h2 piwik-enriched-headline
        help-url="https://matomo.org/docs/geo-locate/"
        id="location-providers">{{ title }}</h2>
    <p>{{ 'UserCountry_GeolocationPageDesc'|translate }}</p>
</div>
<div piwik-content-block content-title="{{ 'UserCountry_LocationProvider'|translate|e('html_attr') }}">
<div
  vue-entry="UserCountry.LocationProviderSelection"
  current-provider-id="{{ currentProviderId|json_encode|e('html_attr') }}"
  is-there-working-provider="{{ isThereWorkingProvider|default(null)|json_encode|e('html_attr') }}"
  set-up-guides="{{ setUpGuides|default(null)|json_encode|e('html_attr') }}"
  this-ip="{{ thisIP|default(null)|json_encode|e('html_attr') }}"
  location-providers="{{ locationProviders|default(null)|json_encode|e('html_attr') }}"
  default-provider-id="{{ constant("Piwik\\Plugins\\UserCountry\\LocationProvider\\DefaultProvider::ID")|default(null)|json_encode|e('html_attr') }}"
  disabled-provider-id="{{ constant("Piwik\\Plugins\\UserCountry\\LocationProvider\\DisabledProvider::ID")|default(null)|json_encode|e('html_attr') }}"
></div>
</div>

{{ configurations|raw }}

{% endblock %}