|
@@ -297,7 +297,7 @@ discard block |
|
|
block discarded – undo |
297
|
297
|
if ($kcount == 0) { |
298
|
298
|
echo "</td><td style='width:", app(ModuleThemeInterface::class)->parameter('chart-box-x'), "px'>"; |
299
|
299
|
} else { |
300
|
|
- echo '<a href="#" title="' . I18N::translate('Children') . '" data-route="Descendants" data-xref="' . e($pid) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($individual->tree()->name()) . '">' . view('icons/arrow-left') . '</a>'; |
|
300
|
+ echo '<a href="#" title="' . I18N::translate('Children') . '" data-route="Descendants" data-xref="' . e($pid) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($individual->tree()->name()) . '">' . view('icons/arrow-left') . '</a>'; |
301
|
301
|
|
302
|
302
|
//-- move the arrow up to line up with the correct box |
303
|
303
|
if ($show_spouse) { |
|
@@ -378,7 +378,7 @@ discard block |
|
|
block discarded – undo |
378
|
378
|
} |
379
|
379
|
|
380
|
380
|
// filter out root person from children array so only siblings remain |
381
|
|
- $siblings = $family->children()->filter(static function (Individual $x) use ($individual): bool { |
|
381
|
+ $siblings = $family->children()->filter(static function (Individual $x) use ($individual): bool { |
382
|
382
|
return $x !== $individual; |
383
|
383
|
}); |
384
|
384
|
|
|
@@ -451,7 +451,7 @@ discard block |
|
|
block discarded – undo |
451
|
451
|
echo '<td id="td_' . e($ARID) . '">'; |
452
|
452
|
|
453
|
453
|
if ($generation == $generations - 1 && $family->husband()->childFamilies()) { |
454
|
|
- echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->husband()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
454
|
+ echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->husband()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
455
|
455
|
} |
456
|
456
|
|
457
|
457
|
$this->printPersonPedigree($family->husband(), $generation + 1, $generations, $show_spouse); |
|
@@ -482,7 +482,7 @@ discard block |
|
|
block discarded – undo |
482
|
482
|
echo '<td id="td_' . e($ARID) . '">'; |
483
|
483
|
|
484
|
484
|
if ($generation == $generations - 1 && $family->wife()->childFamilies()) { |
485
|
|
- echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->wife()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
485
|
+ echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->wife()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
486
|
486
|
} |
487
|
487
|
|
488
|
488
|
$this->printPersonPedigree($family->wife(), $generation + 1, $generations, $show_spouse); |