fix labels and text editors for Quest creation
This commit is contained in:
commit
476c18b6a9
4278 changed files with 1196345 additions and 0 deletions
71
www/analytics/plugins/UserCountry/templates/_updaterManage.twig
Executable file
71
www/analytics/plugins/UserCountry/templates/_updaterManage.twig
Executable file
|
|
@ -0,0 +1,71 @@
|
|||
<div id="geoipdb-update-info" {% if not geoIPDatabasesInstalled %}style="display:none;"{% endif %}>
|
||||
<p>{{ 'UserCountry_GeoIPUpdaterInstructions'|translate('<a href="http://www.maxmind.com/en/download_files?rId=piwik" _target="blank">','</a>',
|
||||
'<a href="http://www.maxmind.com/?rId=piwik">','</a>')|raw }}
|
||||
<br/><br/>
|
||||
{{ 'UserCountry_GeoLiteCityLink'|translate("<a href='"~geoLiteUrl~"'>",geoLiteUrl,'</a>')|raw }}
|
||||
{% if geoIPDatabasesInstalled %}
|
||||
<br/><br/>{{ 'UserCountry_GeoIPUpdaterIntro'|translate }}:
|
||||
{% endif %}
|
||||
</p>
|
||||
<table class="adminTable" style="width:900px;">
|
||||
<tr>
|
||||
<th>{{ 'Live_GoalType'|translate }}</th>
|
||||
<th>{{ 'Actions_ColumnDownloadURL'|translate }}</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150">{{ 'UserCountry_LocationDatabase'|translate }}</td>
|
||||
<td><input type="text" id="geoip-location-db" value="{{ geoIPLocUrl }}"/></td>
|
||||
<td width="164">
|
||||
{% set locationHint %}
|
||||
{{ 'UserCountry_LocationDatabaseHint'|translate }}
|
||||
{% endset %}
|
||||
{% import 'macros.twig' as piwik %}
|
||||
{{ piwik.inlineHelp(locationHint) }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150">{{ 'UserCountry_ISPDatabase'|translate }}</td>
|
||||
<td><input type="text" id="geoip-isp-db" value="{{ geoIPIspUrl }}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150">{{ 'UserCountry_OrgDatabase'|translate }}</td>
|
||||
<td><input type="text" id="geoip-org-db" value="{{ geoIPOrgUrl }}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150">{{ 'UserCountry_DownloadNewDatabasesEvery'|translate }}</td>
|
||||
<td id="geoip-update-period-cell">
|
||||
<input type="radio" name="geoip-update-period" value="month" id="geoip-update-period-month" {% if geoIPUpdatePeriod == 'month' %}checked="checked"{% endif %} />
|
||||
<label for="geoip-update-period-month">{{ 'CoreHome_PeriodMonth'|translate }}</label>
|
||||
|
||||
<input type="radio" name="geoip-update-period" value="week" id="geoip-update-period-week" {% if geoIPUpdatePeriod == 'week' %}checked="checked"{% endif %}/>
|
||||
<label for="geoip-update-period-week">{{ 'CoreHome_PeriodWeek'|translate }}</label>
|
||||
</td>
|
||||
<td width="164">
|
||||
{% set lastTimeRunNote %}
|
||||
{% if lastTimeUpdaterRun is defined and lastTimeUpdaterRun is not empty %}
|
||||
{{ 'UserCountry_UpdaterWasLastRun'|translate(lastTimeUpdaterRun)|raw }}
|
||||
{% else %}
|
||||
{{ 'UserCountry_UpdaterHasNotBeenRun'|translate }}
|
||||
{% endif %}
|
||||
<br/><br/>
|
||||
<div id="geoip-updater-next-run-time">
|
||||
{% include "@UserCountry/_updaterNextRunTime.twig" %}
|
||||
</div>
|
||||
{% endset %}
|
||||
{{ piwik.inlineHelp(lastTimeRunNote) }}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p style="display:inline-block;vertical-align:top;">
|
||||
<input type="button" class="submit" value="{% if not geoIPDatabasesInstalled %}{{ 'General_Continue'|translate }}{% else %}{{ 'General_Save'|translate }}{% endif %}" id="update-geoip-links"/>
|
||||
</p>
|
||||
<div style="display:inline-block;width:700px;">
|
||||
<div id="done-updating-updater"></div>
|
||||
<div id="geoipdb-update-info-error"></div>
|
||||
<div id="geoip-progressbar-container" style="display:none;">
|
||||
<div id="geoip-updater-progressbar"></div>
|
||||
<span id="geoip-updater-progressbar-label"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{% if nextRunTime|default is not empty %}
|
||||
{% if date(nextRunTime.getTimestamp()) <= date() %}
|
||||
{{ 'UserCountry_UpdaterScheduledForNextRun'|translate }}
|
||||
{% else %}
|
||||
{{ 'UserCountry_UpdaterWillRunNext'|translate('<strong><em>' ~ nextRunTime.toString() ~ '</em></strong>')|raw }}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{{ 'UserCountry_UpdaterIsNotScheduledToRun'|translate }}
|
||||
{% endif %}
|
||||
135
www/analytics/plugins/UserCountry/templates/adminIndex.twig
Executable file
135
www/analytics/plugins/UserCountry/templates/adminIndex.twig
Executable file
|
|
@ -0,0 +1,135 @@
|
|||
{% extends 'admin.twig' %}
|
||||
|
||||
{% block content %}
|
||||
{% import 'macros.twig' as piwik %}
|
||||
|
||||
<h2 piwik-enriched-headline
|
||||
help-url="http://piwik.org/docs/geo-locate/"
|
||||
id="location-providers">{{ 'UserCountry_Geolocation'|translate }}</h2>
|
||||
|
||||
<div style="width:900px;">
|
||||
|
||||
<p>{{ 'UserCountry_GeolocationPageDesc'|translate }}</p>
|
||||
|
||||
{% if not isThereWorkingProvider %}
|
||||
<h3 style="margin-top:0;">{{ 'UserCountry_HowToSetupGeoIP'|translate }}</h3>
|
||||
<p>{{ 'UserCountry_HowToSetupGeoIPIntro'|translate }}</p>
|
||||
<ul style="list-style:disc;margin-left:2em;">
|
||||
<li>{{ 'UserCountry_HowToSetupGeoIP_Step1'|translate('<a href="http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz">','</a>','<a target="_blank" href="http://www.maxmind.com/?rId=piwik">','</a>')|raw }}</li>
|
||||
<li>{{ 'UserCountry_HowToSetupGeoIP_Step2'|translate("'GeoLiteCity.dat'",'<strong>','</strong>')|raw }}</li>
|
||||
<li>{{ 'UserCountry_HowToSetupGeoIP_Step3'|translate('<strong>','</strong>','<span style="color:green"><strong>','</strong></span>')|raw }}</li>
|
||||
<li>{{ 'UserCountry_HowToSetupGeoIP_Step4'|translate }}</li>
|
||||
</ul>
|
||||
<p> </p>
|
||||
{% endif %}
|
||||
|
||||
<table class="adminTable locationProviderTable">
|
||||
<tr>
|
||||
<th>{{ 'UserCountry_LocationProvider'|translate }}</th>
|
||||
<th>{{ 'General_Description'|translate }}</th>
|
||||
<th>{{ 'General_InfoFor'|translate(thisIP) }}</th>
|
||||
</tr>
|
||||
{% for id,provider in locationProviders %}
|
||||
<tr>
|
||||
<td width="150">
|
||||
<p>
|
||||
<input class="location-provider" name="location-provider" value="{{ id }}" type="radio" {% if currentProviderId == id %}checked="checked"{% endif %}
|
||||
id="provider_input_{{ id }}" {% if provider.status != 1 %}disabled="disabled"{% endif %}/>
|
||||
<label for="provider_input_{{ id }}">{{ provider.title|translate }}</label><br/>
|
||||
<span class="loadingPiwik" style="display:none;"><img src="./plugins/Zeitgeist/images/loading-blue.gif"/></span>
|
||||
<span class="success" ></span>
|
||||
</p>
|
||||
|
||||
<p class="loc-provider-status">
|
||||
<strong><em>
|
||||
{% if provider.status == 0 %}
|
||||
<span class="is-not-installed">{{ 'General_NotInstalled'|translate}}</span>
|
||||
{% elseif provider.status == 1 %}
|
||||
<span class="is-installed">{{ 'General_Installed'|translate }}</span>
|
||||
{% elseif provider.status == 2 %}
|
||||
<span class="is-broken">{{ 'General_Broken'|translate }}</span>
|
||||
{% endif %}
|
||||
</em></strong>
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>{{ provider.description|translate|raw }}</p>
|
||||
{% if provider.status != 1 and provider.install_docs is defined %}
|
||||
<p>{{ provider.install_docs|raw }}</p>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td width="164">
|
||||
{% if provider.status == 1 %}
|
||||
{% set currentLocation %}
|
||||
{% if thisIP != '127.0.0.1' %}
|
||||
{{ 'UserCountry_CurrentLocationIntro'|translate }}:
|
||||
<div style="text-align:left;">
|
||||
<br/>
|
||||
<span class="loadingPiwik" style="display:none;position:absolute;">
|
||||
<img src="./plugins/Zeitgeist/images/loading-blue.gif"/> {{ 'General_Loading'|translate }}</span>
|
||||
<span class="location"><strong><em>{{ provider.location|raw }}</em></strong></span>
|
||||
</div>
|
||||
<div style="text-align:right;">
|
||||
<a href="#" class="refresh-loc" data-impl-id="{{ id }}"><em>{{ 'General_Refresh'|translate }}</em></a>
|
||||
</div>
|
||||
{% else %}
|
||||
{{ 'UserCountry_CannotLocalizeLocalIP'|translate(thisIP) }}
|
||||
{% endif %}
|
||||
{% endset %}
|
||||
{{ piwik.inlineHelp(currentLocation) }}
|
||||
{% endif %}
|
||||
{% if provider.statusMessage is defined and provider.statusMessage %}
|
||||
{% set brokenReason %}
|
||||
{% if provider.status == 2 %}<strong><em>{{ 'General_Error'|translate }}:</em></strong> {% endif %}{{ provider.statusMessage|raw }}
|
||||
{% endset %}
|
||||
{{ piwik.inlineHelp(brokenReason) }}
|
||||
{% endif %}
|
||||
{% if provider.extra_message is defined and provider.extra_message %}
|
||||
{% set extraMessage %}
|
||||
{{ provider.extra_message|raw }}
|
||||
{% endset %}
|
||||
<br/>
|
||||
{{ piwik.inlineHelp(extraMessage) }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
{% if not geoIPDatabasesInstalled %}
|
||||
<h2 id="geoip-db-mangement">{{ 'UserCountry_GeoIPDatabases'|translate }}</h2>
|
||||
{% else %}
|
||||
<h2 id="geoip-db-mangement">{{ 'UserCountry_SetupAutomaticUpdatesOfGeoIP'|translate }}</h2>
|
||||
{% endif %}
|
||||
|
||||
{% if showGeoIPUpdateSection %}
|
||||
<div id="manage-geoip-dbs" style="width:900px;" class="adminTable">
|
||||
|
||||
{% if not geoIPDatabasesInstalled %}
|
||||
<div id="geoipdb-screen1">
|
||||
<p>{{ 'UserCountry_PiwikNotManagingGeoIPDBs'|translate }}</p>
|
||||
|
||||
<div class="geoipdb-column-1">
|
||||
<p>{{ 'UserCountry_IWantToDownloadFreeGeoIP'|translate|raw }}</p>
|
||||
<input type="button" class="submit" value="{{ 'General_GetStarted'|translate }}..." id="start-download-free-geoip"/>
|
||||
</div>
|
||||
<div class="geoipdb-column-2">
|
||||
<p>{{ 'UserCountry_IPurchasedGeoIPDBs'|translate('<a href="http://www.maxmind.com/en/geolocation_landing?rId=piwik">','</a>')|raw }}</p>
|
||||
<input type="button" class="submit" value="{{ 'General_GetStarted'|translate }}..." id="start-automatic-update-geoip"/>
|
||||
</div>
|
||||
</div>
|
||||
<div id="geoipdb-screen2-download" style="display:none;">
|
||||
<p class='loadingPiwik'><img src='./plugins/Zeitgeist/images/loading-blue.gif'/>
|
||||
{{ 'UserCountry_DownloadingDb'|translate('<a href="'~geoLiteUrl~'">GeoLiteCity.dat</a>')|raw }}...</p>
|
||||
<div id="geoip-download-progress"></div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% include "@UserCountry/_updaterManage.twig" %}
|
||||
{% else %}
|
||||
<p style="width:900px;" class="form-description">{{ 'UserCountry_CannotSetupGeoIPAutoUpdating'|translate }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
{% include "@UserCountry/_updaterManage.twig" %}
|
||||
26
www/analytics/plugins/UserCountry/templates/index.twig
Normal file
26
www/analytics/plugins/UserCountry/templates/index.twig
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<div id="leftcolumn">
|
||||
{{ postEvent("Template.leftColumnUserCountry") }}
|
||||
|
||||
<h2 piwik-enriched-headline>{{ 'UserCountry_Continent'|translate }}</h2>
|
||||
{{ dataTableContinent|raw }}
|
||||
|
||||
<div class="sparkline">
|
||||
{{ sparkline(urlSparklineCountries) }}
|
||||
{{ 'UserCountry_DistinctCountries'|translate("<strong>"~numberDistinctCountries~"</strong>")|raw }}
|
||||
</div>
|
||||
|
||||
{{ postEvent("Template.footerUserCountry") }}
|
||||
|
||||
</div>
|
||||
|
||||
<div id="rightcolumn">
|
||||
<h2 piwik-enriched-headline>{{ 'UserCountry_Country'|translate }}</h2>
|
||||
{{ dataTableCountry|raw }}
|
||||
|
||||
<h2 piwik-enriched-headline>{{ 'UserCountry_Region'|translate }}</h2>
|
||||
{{ dataTableRegion|raw }}
|
||||
|
||||
<h2 piwik-enriched-headline>{{ 'UserCountry_City'|translate }}</h2>
|
||||
{{ dataTableCity|raw }}
|
||||
</div>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue