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