![]() 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/pedigree-chart/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\Individual; use Illuminate\Support\Collection; /** * @var Collection<int,Individual> $ancestors Indexed by sosa number * @var int $generation Draw this generation * @var int $generations Final generation to draw * @var Collection<int,string> $links Links to extend the tree * @var int $sosa Draw this individual * @var string $spacer */ ?> <div class="d-flex"> <?php if ($generation < $generations) : ?> <div class="d-flex flex-column"> <?= view('modules/pedigree-chart/chart-left', ['ancestors' => $ancestors, 'sosa' => $sosa * 2, 'generation' => $generation + 1, 'generations' => $generations, 'links' => $links, 'spacer' => $spacer]) ?> <?= view('modules/pedigree-chart/chart-left', ['ancestors' => $ancestors, 'sosa' => $sosa * 2 + 1, 'generation' => $generation + 1, 'generations' => $generations, 'links' => $links, 'spacer' => $spacer]) ?> </div> <?php endif ?> <div class="position-relative d-flex flex-column justify-content-center wt-pedigree-generation wt-generation-fwd-<?= $generation ?> wt-generation-rev-<?= 1 + $generations - $generation ?>"> <!-- lines to the next generation --> <?php if ($generation < $generations) : ?> <div class="wt-pedigree-lines position-absolute"></div> <?php endif ?> <div class="d-flex align-items-center position-relative"> <?php if ($generation === $generations) : ?> <?= $links->get($sosa, $spacer) ?> <?php endif ?> <?= view('chart-box', ['individual' => $ancestors->get($sosa)]) ?> <?php if ($sosa === 1) : ?> <?= $links->get(1) ?> <?php endif ?> </div> </div> </div>