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