xref: /webtrees/resources/views/modules/privacy-policy/page.phtml (revision 44223cc470b305d90c96ce9418f1f6ebe9ecafa3)
1b3a775f6SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2b3a775f6SGreg Roach
3b3a775f6SGreg Roach<h2><?= $title ?></h2>
4b3a775f6SGreg Roach
5b3a775f6SGreg Roach<h3><?= I18N::translate('Personal data') ?></h3>
6b3a775f6SGreg Roach
7b3a775f6SGreg Roach<ul>
8b3a775f6SGreg Roach    <li>
9b3a775f6SGreg Roach        <?= I18N::translate('This website processes personal data for the purpose of historical and genealogical research.') ?>
10b3a775f6SGreg Roach    </li>
11b3a775f6SGreg Roach    <li>
12b3a775f6SGreg Roach        <?= I18N::translate('This research is a “legitimate interest” under article 6(f) of the EU General Data Protection Regulations.') ?>
13b3a775f6SGreg Roach    </li>
14b3a775f6SGreg Roach</ul>
15b3a775f6SGreg Roach
16b3a775f6SGreg Roach<h3><?= I18N::translate('Cookies') ?></h3>
17b3a775f6SGreg Roach
18b3a775f6SGreg Roach<ul>
19b3a775f6SGreg Roach    <li>
20b3a775f6SGreg Roach        <?= I18N::translate('This website uses cookies to enable login sessions, and to remember preferences such as your chosen language.') ?>
21b3a775f6SGreg Roach    </li>
22b3a775f6SGreg Roach    <li>
23b3a775f6SGreg Roach        <?= I18N::translate('These cookies are “essential”, and do not require consent.') ?>
24b3a775f6SGreg Roach    </li>
25b3a775f6SGreg Roach</ul>
26b3a775f6SGreg Roach
27b3a775f6SGreg Roach<?php if ($analytics->isNotEmpty()): ?>
28b3a775f6SGreg Roach    <h3><?= I18N::translate('Tracking and analytics') ?></h3>
29b3a775f6SGreg Roach
30b3a775f6SGreg Roach    <ul>
31b3a775f6SGreg Roach        <li>
32b3a775f6SGreg Roach            <?= I18N::translate('This website uses third-party services to learn about visitor behavior.') ?>
33b3a775f6SGreg Roach            <ul>
34b3a775f6SGreg Roach                <?php foreach ($analytics as $module): ?>
35b3a775f6SGreg Roach                    <li>
36*44223cc4SGreg Roach                        <?= $module->title() ?>37*44223cc4SGreg Roach                        <a href="<?= e($module->externalUrl()) ?>"><?= e($module->externalUrl()) ?></a>
38b3a775f6SGreg Roach                    </li>
39b3a775f6SGreg Roach                <?php endforeach ?>
40b3a775f6SGreg Roach            </ul>
41b3a775f6SGreg Roach        </li>
42b3a775f6SGreg Roach
43b3a775f6SGreg Roach        <li>
44b3a775f6SGreg Roach            <?= I18N::translate('These services may use cookies or other tracking technology.') ?>
45b3a775f6SGreg Roach        </li>
46b3a775f6SGreg Roach
47b3a775f6SGreg Roach        <li>
48b3a775f6SGreg Roach            <?= I18N::translate('You can opt out of tracking by setting the ”Do Not Track“ header in your browser preferences.') ?>
49b3a775f6SGreg Roach        </li>
50b3a775f6SGreg Roach    </ul>
51b3a775f6SGreg Roach<?php endif ?>
52b3a775f6SGreg Roach
53b3a775f6SGreg Roach<h3><?= I18N::translate('Data controller') ?></h3>
54b3a775f6SGreg Roach
55b3a775f6SGreg Roach<ul>
56b3a775f6SGreg Roach    <li>
57b3a775f6SGreg Roach        <?= I18N::translate('This website is operated by the following individuals.') ?>
58b3a775f6SGreg Roach
59b3a775f6SGreg Roach        <ul>
60b3a775f6SGreg Roach            <?php foreach ($administrators as $administrator): ?>
61b3a775f6SGreg Roach                <li>
62b3a775f6SGreg Roach                    <?= e($administrator->realName()) ?>63b3a775f6SGreg Roach                    <a href="mailto:<?= e($administrator->email()) ?>"><?= e($administrator->email()) ?></a>
64b3a775f6SGreg Roach
65b3a775f6SGreg Roach
66b3a775f6SGreg Roach                </li>
67b3a775f6SGreg Roach            <?php endforeach ?>
68b3a775f6SGreg Roach        </ul>
69b3a775f6SGreg Roach
70b3a775f6SGreg Roach    </li>
71b3a775f6SGreg Roach</ul>
72b3a775f6SGreg Roach
73