1<?php 2 3use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 4use Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllPage; 5use Fisharebest\Webtrees\I18N; 6use Fisharebest\Webtrees\Tree; 7use Illuminate\Support\Collection; 8 9/** 10 * @var Collection<int,Tree> $all_trees 11 * @var string $sitemap_url 12 * @var array<string,string> $submit_urls 13 * @var string $title 14 */ 15 16?> 17 18<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ModulesAllPage::class) => I18N::translate('Modules'), $title]]) ?> 19 20<h1><?= $title ?></h1> 21 22<p> 23 <?= /* I18N: The www.sitemaps.org site is translated into many languages (e.g. https://www.sitemaps.org/fr/) - choose an appropriate URL. */ I18N::translate('Sitemaps are a way for webmasters to tell search engines about the pages on a website that are available for crawling. All major search engines support sitemaps. For more information, see <a href="https://www.sitemaps.org/">www.sitemaps.org</a>.') ?> 24</p> 25 26<p> 27 <?= /* I18N: Label for a configuration option */ I18N::translate('Which family trees should be included in the sitemaps') ?> 28</p> 29 30<form method="post" action="<?= e(route('module', ['module' => 'sitemap', 'action' => 'Admin'])) ?>"> 31 <?php foreach ($all_trees as $tree) : ?> 32 <?= view('components/checkbox', ['label' => e($tree->title()), 'name' => 'sitemap' . $tree->id(), 'checked' => (bool) $tree->getPreference('include_in_sitemap')]) ?> 33 <?php endforeach ?> 34 35 <button type="submit" class="btn btn-primary"> 36 <?= I18N::translate('save') ?> 37 </button> 38 39 <?= csrf_field() ?> 40</form> 41 42<hr> 43 44<p> 45 <?= I18N::translate('URL') ?> — <a href="<?= e($sitemap_url) ?>"><?= e($sitemap_url) ?></a> 46</p> 47 48<p> 49 <?= I18N::translate('To tell search engines that sitemaps are available, you can use the following links.') ?> 50</p> 51 52<ul> 53 <?php foreach ($submit_urls as $search_engine => $url) : ?> 54 <li> 55 <a href="<?= e($url) ?>"> 56 <?= e($search_engine) ?> 57 </a> 58 </li> 59 <?php endforeach ?> 60</ul> 61