1e759aebbSGreg Roach<?php 2241a1636SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5e759aebbSGreg Roachuse Fisharebest\Webtrees\Individual; 6e759aebbSGreg Roachuse Illuminate\Support\Collection; 7241a1636SGreg Roach 8e759aebbSGreg Roach/** 936779af1SGreg Roach * @var Collection<int,Individual> $ancestors 10e759aebbSGreg Roach * @var int $generations 1136779af1SGreg Roach * @var Collection<int,string> $links 12bb1ec7dcSGreg Roach * @var string $spacer 1371378461SGreg Roach * @var string $style 14e759aebbSGreg Roach */ 15e759aebbSGreg Roach?> 16241a1636SGreg Roach 1771378461SGreg Roach<div class="wt-chart-pedigree-<?= e($style) ?>"> 18bb1ec7dcSGreg Roach <?= view('modules/pedigree-chart/chart-' . $style, ['ancestors' => $ancestors, 'sosa' => 1, 'generation' => 1, 'generations' => $generations, 'links' => $links, 'spacer' => $spacer]) ?> 19241a1636SGreg Roach</div> 20