![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/resources/views/modules/sitemap/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\Family; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Media; use Fisharebest\Webtrees\Note; use Fisharebest\Webtrees\Repository; use Fisharebest\Webtrees\Source; use Fisharebest\Webtrees\Submitter; use Illuminate\Support\Collection; /** * @var Collection<string,int> $count_families * @var Collection<string,int> $count_individuals * @var Collection<string,int> $count_media * @var Collection<string,int> $count_notes * @var Collection<string,int> $count_repositories * @var Collection<string,int> $count_sources * @var Collection<string,int> $count_submitters * @var string $last_mod * @var int $records_per_volume * @var string $sitemap_xsl */ ?> <<?php /* Beware short open tags in PHP <8.0 */ ?>?xml version="1.0" encoding="UTF-8"?> <<?php /* Beware short open tags in PHP <8.0 */ ?>?xml-stylesheet type="text/xsl" href="<?= e($sitemap_xsl) ?>"?> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <?php foreach ($count_families as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Family::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_individuals as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Individual::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_media as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Media::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_notes as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Note::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_repositories as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Repository::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_sources as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Source::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> <?php foreach ($count_submitters as $tree_name => $count) : ?> <?php for ($i = 0; $i <= $count / $records_per_volume; ++$i) : ?> <sitemap> <loc> <?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Submitter::RECORD_TYPE, 'page' => $i])) ?> </loc> <lastmod> <?= $last_mod ?> </lastmod> </sitemap> <?php endfor ?> <?php endforeach ?> </sitemapindex>