1*7c2c99faSGreg Roach<?php 2*7c2c99faSGreg Roach 3*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual; 4*7c2c99faSGreg Roach 5*7c2c99faSGreg Roach/** 6*7c2c99faSGreg Roach * @var Individual $individual 7*7c2c99faSGreg Roach */ 8*7c2c99faSGreg Roach 9*7c2c99faSGreg Roach?> 10dd6b2bfcSGreg Roach<div class="wt-sidebar-content wt-sidebar-family-navigator"> 11dd6b2bfcSGreg Roach <!-- parent families --> 1239ca88baSGreg Roach <?php foreach ($individual->childFamilies() as $family) : ?> 13dd6b2bfcSGreg Roach <?= view('modules/family_nav/sidebar-family', ['individual' => $individual, 'family' => $family, 'title' => $individual->getChildFamilyLabel($family)]) ?> 14dd6b2bfcSGreg Roach <?php endforeach ?> 15dd6b2bfcSGreg Roach 16dd6b2bfcSGreg Roach <!-- step parents --> 1739ca88baSGreg Roach <?php foreach ($individual->childStepFamilies() as $family) : ?> 18dd6b2bfcSGreg Roach <?= view('modules/family_nav/sidebar-family', ['individual' => $individual, 'family' => $family, 'title' => $individual->getStepFamilyLabel($family)]) ?> 19dd6b2bfcSGreg Roach <?php endforeach ?> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach <!-- spouse and children --> 2239ca88baSGreg Roach <?php foreach ($individual->spouseFamilies() as $family) : ?> 23b8fcc447SGreg Roach <?= view('modules/family_nav/sidebar-family', ['individual' => $individual, 'family' => $family, 'title' => $individual->getspouseFamilyLabel($family)]) ?> 24dd6b2bfcSGreg Roach <?php endforeach ?> 25dd6b2bfcSGreg Roach 26dd6b2bfcSGreg Roach <!-- step children --> 27a6fb19d3SGreg Roach <?php foreach ($individual->spouseStepFamilies() as $family) : ?> 2839ca88baSGreg Roach <?= view('modules/family_nav/sidebar-family', ['individual' => $individual, 'family' => $family, 'title' => $family->fullName()]) ?> 29dd6b2bfcSGreg Roach <?php endforeach ?> 30dd6b2bfcSGreg Roach</div> 31