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