1*7c2c99faSGreg Roach<?php 2*7c2c99faSGreg Roach 3*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual; 4*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Module\CompactTreeChartModule; 5*7c2c99faSGreg Roach 6*7c2c99faSGreg Roach/** 7*7c2c99faSGreg Roach * @var Individual|null $individual 8*7c2c99faSGreg Roach * @var CompactTreeChartModule $module 9*7c2c99faSGreg Roach */ 10*7c2c99faSGreg Roach 11*7c2c99faSGreg Roach?> 12*7c2c99faSGreg Roach<?php if ($individual instanceof Individual) : ?> 13242a7862SGreg Roach <a href="<?= e($module->chartUrl($individual)) ?>" title="<?= strip_tags($module->chartTitle($individual)) ?>"> 1439b853a7SGreg Roach <?= view('icons/arrow-right') ?> 1539b853a7SGreg Roach </a> 16*7c2c99faSGreg Roach<?php else : ?> 17*7c2c99faSGreg Roach <?= view('icons/arrow-right') ?> 1839b853a7SGreg Roach<?php endif; 19