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