xref: /webtrees/resources/views/modules/privacy-policy/page.phtml (revision 6bd19c8ce39244f770147102c818d9c7d9e13667)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
6d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
77c2c99faSGreg Roachuse Fisharebest\Webtrees\Module\ModuleAnalyticsInterface;
8*6bd19c8cSGreg Roachuse Fisharebest\Webtrees\Module\ModuleExternalUrlInterface;
97c2c99faSGreg Roachuse Illuminate\Support\Collection;
107c2c99faSGreg Roach
117c2c99faSGreg Roach/**
1236779af1SGreg Roach * @var Collection<int,UserInterface>            $administrators
1336779af1SGreg Roach * @var Collection<int,ModuleAnalyticsInterface> $analytics
147c2c99faSGreg Roach * @var string                                   $title
157c2c99faSGreg Roach */
16d70512abSGreg Roach
17d70512abSGreg Roach?>
18b3a775f6SGreg Roach
19b3a775f6SGreg Roach<h2><?= $title ?></h2>
20b3a775f6SGreg Roach
21b3a775f6SGreg Roach<h3><?= I18N::translate('Personal data') ?></h3>
22b3a775f6SGreg Roach
23b3a775f6SGreg Roach<ul>
24b3a775f6SGreg Roach    <li>
25b3a775f6SGreg Roach        <?= I18N::translate('This website processes personal data for the purpose of historical and genealogical research.') ?>
26b3a775f6SGreg Roach    </li>
27b3a775f6SGreg Roach    <li>
28b3a775f6SGreg Roach        <?= I18N::translate('This research is a “legitimate interest” under article 6(f) of the EU General Data Protection Regulations.') ?>
29b3a775f6SGreg Roach    </li>
30b3a775f6SGreg Roach</ul>
31b3a775f6SGreg Roach
32b3a775f6SGreg Roach<h3><?= I18N::translate('Cookies') ?></h3>
33b3a775f6SGreg Roach
34b3a775f6SGreg Roach<ul>
35b3a775f6SGreg Roach    <li>
36b3a775f6SGreg Roach        <?= I18N::translate('This website uses cookies to enable login sessions, and to remember preferences such as your chosen language.') ?>
37b3a775f6SGreg Roach    </li>
38b3a775f6SGreg Roach    <li>
39b3a775f6SGreg Roach        <?= I18N::translate('These cookies are “essential”, and do not require consent.') ?>
40b3a775f6SGreg Roach    </li>
41b3a775f6SGreg Roach</ul>
42b3a775f6SGreg Roach
43b3a775f6SGreg Roach<?php if ($analytics->isNotEmpty()) : ?>
44b3a775f6SGreg Roach    <h3><?= I18N::translate('Tracking and analytics') ?></h3>
45b3a775f6SGreg Roach
46b3a775f6SGreg Roach    <ul>
47b3a775f6SGreg Roach        <li>
48b3a775f6SGreg Roach            <?= I18N::translate('This website uses third-party services to learn about visitor behavior.') ?>
49b3a775f6SGreg Roach            <ul>
50b3a775f6SGreg Roach                <?php foreach ($analytics as $module) : ?>
51b3a775f6SGreg Roach                    <li>
52*6bd19c8cSGreg Roach                        <?= $module->title() ?>
53*6bd19c8cSGreg Roach                        <?php if ($module instanceof ModuleExternalUrlInterface) : ?>
54*6bd19c8cSGreg Roach                            — <a href="<?= e($module->externalUrl()) ?>"><?= e($module->externalUrl()) ?></a>
55*6bd19c8cSGreg Roach                        <?php endif ?>
56b3a775f6SGreg Roach                    </li>
57b3a775f6SGreg Roach                <?php endforeach ?>
58b3a775f6SGreg Roach            </ul>
59b3a775f6SGreg Roach        </li>
60b3a775f6SGreg Roach
61b3a775f6SGreg Roach        <li>
62b3a775f6SGreg Roach            <?= I18N::translate('These services may use cookies or other tracking technology.') ?>
63b3a775f6SGreg Roach        </li>
64b3a775f6SGreg Roach
65b3a775f6SGreg Roach        <li>
66d8d0bebcSGreg Roach            <?= I18N::translate('You can opt out of tracking by setting the “Do Not Track” header in your browser preferences.') ?>
67b3a775f6SGreg Roach        </li>
68b3a775f6SGreg Roach    </ul>
69b3a775f6SGreg Roach<?php endif ?>
70b3a775f6SGreg Roach
71b3a775f6SGreg Roach<h3><?= I18N::translate('Data controller') ?></h3>
72b3a775f6SGreg Roach
73b3a775f6SGreg Roach<ul>
74b3a775f6SGreg Roach    <li>
75b3a775f6SGreg Roach        <?= I18N::translate('This website is operated by the following individuals.') ?>
76b3a775f6SGreg Roach
77b3a775f6SGreg Roach        <ul>
78b3a775f6SGreg Roach            <?php foreach ($administrators as $administrator) : ?>
79b3a775f6SGreg Roach                <li>
80b3a775f6SGreg Roach                    <?= e($administrator->realName()) ?>81b3a775f6SGreg Roach                    <a href="mailto:<?= e($administrator->email()) ?>"><?= e($administrator->email()) ?></a>
82b3a775f6SGreg Roach
83b3a775f6SGreg Roach
84b3a775f6SGreg Roach                </li>
85b3a775f6SGreg Roach            <?php endforeach ?>
86b3a775f6SGreg Roach        </ul>
87b3a775f6SGreg Roach
88b3a775f6SGreg Roach    </li>
89b3a775f6SGreg Roach</ul>
90