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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohann Bianchi <sbooob@gmail.com>2013-10-28 02:14:45 +0400
committerYohann Bianchi <sbooob@gmail.com>2013-10-28 05:16:57 +0400
commitdaec969e3d73d36e1176ee98a7f6be5b69847d5c (patch)
tree6db59d0a7d35c9e81ebe573ec1052a870050898c /plugins/PrivacyManager/templates
parenta5ff495f3a5a5f253cfdbba6376e31952adc2f4a (diff)
ADDED: Option to use non-anonymized IP address to determine the visitor's location & ISP
Diffstat (limited to 'plugins/PrivacyManager/templates')
-rw-r--r--plugins/PrivacyManager/templates/privacySettings.twig16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/PrivacyManager/templates/privacySettings.twig b/plugins/PrivacyManager/templates/privacySettings.twig
index 60ea7e9c6f..3a3b2b5af3 100644
--- a/plugins/PrivacyManager/templates/privacySettings.twig
+++ b/plugins/PrivacyManager/templates/privacySettings.twig
@@ -48,6 +48,22 @@
{{ piwik.inlineHelp('PrivacyManager_GeolocationAnonymizeIpNote'|translate) }}
</td>
</tr>
+ <tr>
+ <td width="250">
+ {{ 'PrivacyManager_UseAnonymizedIpForVisitEnrichment'|translate }}
+ </td>
+ <td width='500'>
+ <label>
+ <input type="radio" name="useAnonymizedIpForVisitEnrichment" value="1" {% if anonymizeIP.useAnonymizedIpForVisitEnrichment == '1' %}checked {% endif %}/> {{ 'General_Yes'|translate }}
+ </label>
+ <label>
+ <input type="radio" name="useAnonymizedIpForVisitEnrichment" value="0" style="margin-left:20px;" {% if anonymizeIP.useAnonymizedIpForVisitEnrichment == '0' %} checked {% endif %}/> {{ 'General_No'|translate }}
+ </label>
+ </td>
+ <td width="200">
+ {{ piwik.inlineHelp('PrivacyManager_UseAnonymizedIpForVisitEnrichmentNote'|translate) }}
+ </td>
+ </tr>
</table>
</div>
<input type="submit" value="{{ 'General_Save'|translate }}" id="privacySettingsSubmit" class="submit"/>