mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 22:03:56 -07:00
Have the user accept explicitly that he is subject to the Terms and
Conditions and Privacy Policy by the DBolical Pty Ltd company when using
their service with our client.
Rely on luck that this is sufficient to count as educating the users
about the personal data processed, the purposes and legal grounds of
personal data processing and the GDPR user right to access, rectify,
erase, restrict and complain, refs #5257, GDPR 13.
The Mod.IO DMCA report possibility should be added eventually.
Remove FileExists hack from da49aa1541 / D1602.
Refs D1601, https://github.com/elexis1/0ad/tree/terms
This was SVN commit r21896.
32 lines
597 B
JavaScript
32 lines
597 B
JavaScript
function downloadModsButton()
|
|
{
|
|
initTerms({
|
|
"Disclaimer": {
|
|
"title": translate("Disclaimer"),
|
|
"file": "gui/modio/Disclaimer.txt",
|
|
"config": "modio.disclaimer",
|
|
"accepted": false,
|
|
"callback": openModIo,
|
|
"urlButtons": [
|
|
{
|
|
"caption": translate("mod.io Terms"),
|
|
"url": "https://mod.io/terms"
|
|
},
|
|
{
|
|
"caption": translate("mod.io Privacy Policy"),
|
|
"url": "https://mod.io/privacy"
|
|
}
|
|
]
|
|
}
|
|
});
|
|
|
|
openTerms("Disclaimer");
|
|
}
|
|
|
|
function openModIo(data)
|
|
{
|
|
if (data.accepted)
|
|
Engine.PushGuiPage("page_modio.xml", {
|
|
"callback": "initMods"
|
|
});
|
|
}
|