summaryrefslogtreecommitdiff
path: root/resources/views/modules/privacy-policy/page.phtml
blob: 56232debda2cfdabafb5df21080aa56a6ac35833 (plain)
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
<?php use Fisharebest\Webtrees\I18N; ?>

<h2><?= $title ?></h2>

<h3><?= I18N::translate('Personal data') ?></h3>

<ul>
    <li>
        <?= I18N::translate('This website processes personal data for the purpose of historical and genealogical research.') ?>
    </li>
    <li>
        <?= I18N::translate('This research is a “legitimate interest” under article 6(f) of the EU General Data Protection Regulations.') ?>
    </li>
</ul>

<h3><?= I18N::translate('Cookies') ?></h3>

<ul>
    <li>
        <?= I18N::translate('This website uses cookies to enable login sessions, and to remember preferences such as your chosen language.') ?>
    </li>
    <li>
        <?= I18N::translate('These cookies are “essential”, and do not require consent.') ?>
    </li>
</ul>

<?php if ($analytics->isNotEmpty()): ?>
    <h3><?= I18N::translate('Tracking and analytics') ?></h3>

    <ul>
        <li>
            <?= I18N::translate('This website uses third-party services to learn about visitor behavior.') ?>
            <ul>
                <?php foreach ($analytics as $module): ?>
                    <li>
                        <?= $module->title() ?> —
                        <a href="<?= e($module->externalUrl()) ?>"><?= e($module->externalUrl()) ?></a>
                    </li>
                <?php endforeach ?>
            </ul>
        </li>

        <li>
            <?= I18N::translate('These services may use cookies or other tracking technology.') ?>
        </li>

        <li>
            <?= I18N::translate('You can opt out of tracking by setting the AccountUpdate header in your browser preferences.') ?>
        </li>
    </ul>
<?php endif ?>

<h3><?= I18N::translate('Data controller') ?></h3>

<ul>
    <li>
        <?= I18N::translate('This website is operated by the following individuals.') ?>

        <ul>
            <?php foreach ($administrators as $administrator): ?>
                <li>
                    <?= e($administrator->realName()) ?> —
                    <a href="mailto:<?= e($administrator->email()) ?>"><?= e($administrator->email()) ?></a>


                </li>
            <?php endforeach ?>
        </ul>

    </li>
</ul>