-
Notifications
You must be signed in to change notification settings - Fork 40
/
privacy.php
executable file
·129 lines (90 loc) · 4.98 KB
/
privacy.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
// 2019: If you host your own public game server, please update the Privacy Policy and TOS accordingly.
$l = 'en_US';
if(isset($_SERVER['HTTP_HOST'])){
if($_SERVER['HTTP_HOST'] == 'br.hackerexperience.com' || $_SERVER['HTTP_HOST'] == 'www.br.hackerexperience.com'){
$l = 'pt_BR';
}
}
putenv("LANG=" . $l);
setlocale(LC_ALL, $l);
$domain = "messages";
bindtextdomain($domain, "locale");
bind_textdomain_codeset($domain, 'UTF-8');
textdomain($domain);
?>
<html>
<head>
<meta charset="UTF-8">
<title><?php echo _('Privacy Policy'); ?></title>
<style>
body {
margin-left: 100px;
margin-right: 100px;
}
h1, h6 {
text-align: center;
}
li {
font-weight: bold;
}
ul {
margin: 4px;
}
</style>
</head>
<body>
<h1><?php echo _('Privacy Matters'); ?></h1>
<h6>Hacker Experience <?php echo _('Privacy Policy'); ?></h6>
<?php echo _('Privacy is top priority at Hacker Experience, and we like to explain our Privacy Policy in clear and simple words:'); ?><br/><br/>
<li><?php echo _('Personal information you provide us'); ?></li>
<ul>- <?php echo _('Your email. We keep them for verification purposes.'); ?></ul>
<ul>- <?php echo _('If you login using Facebook or Twitter social plugin, we have access to your social ID, username and email. We keep your social ID and email for verification purposes.'); ?></ul>
<li><?php echo _('We collect'); ?></li>
<ul>- <?php echo _('Browser family'); ?></ul>
<ul>- <?php echo _('Operating system'); ?></ul>
<ul>- <?php echo _('IP address'); ?></ul>
<ul>- <?php echo _('Referrer website'); ?></ul>
<br/>
<ul><?php echo _('All these information provides us better information as to where our users are having trouble accessing, in which parts of the world the page is taking too long to load, or how their gaming experience is.'); ?> </ul>
<li><?php echo _('We use'); ?></li>
<ul>- <?php echo _('Piwik - <a href="http://piwik.org">Piwik</a> is an <i>open source</i> web analytics platform that respects it\'s users privacy.'); ?> </ul>
<ul>- <?php echo _('New Relic - New Relic provides better statistics regarding page load and application aspects. No personal-identifying information is collected.'); ?></ul>
<ul>- <?php echo _('Cookies - We use cookies to enable a more personal experience on the game. We do not track other sites than hackerexperience.com. Hacker Experience might not work without cookies.'); ?></ul>
<ul>- <?php echo _('Google Adsense - Google Ads help keep Hacker Experience free.'); ?></ul>
<li><?php echo _('We protect'); ?></li>
<ul>- <?php echo _('Your data - We do not rent or sell your personal/identifying data, nor make it public. It is safely stored on a private, access-limited server.'); ?></ul>
<ul>- <?php echo _('Your password - Your password is uniquely salted using a slow hashing function.'); ?></ul>
<ul>- <?php echo _('Your email - We do not spam.'); ?></ul>
<li><?php echo _('When purchasing premium membership'); ?></li>
<ul>- <?php echo _('We do not store your credit card information.'); ?></ul>
<ul>- <?php echo _('We use SSL and encrypt your data from our site to the payment gateway.'); ?></ul>
<li><?php echo _('We use Google AdSense, that'); ?></li>
<ul>- <?php echo _('Uses cookies to serve ads based on a user\'s prior visits to Hacker Experience.'); ?></ul>
<ul>- <?php echo _('Uses DoubleClick*, a cookie that enables it and its partners to serve ads to you based on your previous accesses to other sites on the Internet.'); ?></ul><br/>
<ul>*<?php echo _('Users may opt out of the use of the DoubleClick cookie for interest-based advertising by visiting <a href="http://www.google.com/ads/preferences/">Ads Settings</a>.'); ?></ul>
<li><?php echo _('Please note'); ?></li>
<ul>- <?php echo _('The use of the site constites your full acceptance of our Privacy Policy. If you do not agree with it, please refrain from using www.hackerexperience.com and all related domains.'); ?></ul>
<ul>- <?php echo _('We may change our privacy policy from time to time. Although efforts will be made to announce any changes on the Forum Announcements Board, we may do so in our sole discretion. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change. Therefore, we encourage you to visit this page regularly.'); ?></ul>
<br/><br/>
<?php
$piwik_l = 'en';
if($l == 'pt_BR'){
$piwik_l = 'pt';
}
?>
<center>
<strong><?php echo _('You can opt out of our tracking analytics at any time using the checkbox below'); ?></strong><br/>
<iframe style="border: 0; height: 200px; width: 600px;" src="http://piwik.hackerexperience.com/index?module=CoreAdminHome&action=optOut&language=<?php echo $piwik_l; ?>"></iframe>
<br/><br/>
<strong><?php echo _('We use, follow and recommend the ACM code of ethics'); ?></strong><br/>
<a href="http://www.acm.org/about/code-of-ethics">http://www.acm.org/about/code-of-ethics</a>
<br/>
</center>
<br/><br/>
<center>
<?php echo sprintf(_('This Term of Service was first published on %s and last revised on %s.'), '30/08/2014', '30/08/2014'); ?>
</center>
<br/>
</body>
</html>