Searched refs:child2 (Results 1 – 6 of 6) sorted by relevance
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 376 $child2 = Registry::individualFactory()->make($fam->ch2, $this->tree); 378 …if ($family !== null && $child1 !== null && $child2 !== null && $child1->canShow() && $child2->can… 382 'child2' => $child2, 410 $child2 = Registry::individualFactory()->make($fam->ch2, $this->tree); 415 …if ($family !== null && $child1 !== null && $child2 !== null && $child1->canShow() && $child2->can… 418 'child2' => $child2, 425 … (!$one && $family !== null && $child1 !== null && $child2 !== null && $child1->canShow() && $chil… 428 'child2' => $child2, 471 $child2 = Registry::individualFactory()->make($fam->ch2, $this->tree); 473 …if ($family !== null && $child1 !== null && $child2 !== null && $child1->canShow() && $child2->can… [all …]
|
/webtrees/tests/app/Census/ |
H A D | CensusColumnChildrenDiedTest.php | 54 $child2 = $this->createMock(Individual::class); 55 $child2->method('getBirthDate')->willReturn(new Date('02 FEB 1904')); 56 $child2->method('getDeathDate')->willReturn(new Date('20 DEC 1912')); 69 … $family->method('children')->willReturn(new Collection([$child1, $child2, $child3, $child4]));
|
H A D | CensusColumnChildrenLivingTest.php | 54 $child2 = $this->createMock(Individual::class); 55 $child2->method('getBirthDate')->willReturn(new Date('02 FEB 1904')); 56 $child2->method('getDeathDate')->willReturn(new Date('20 DEC 1912')); 71 $child2,
|
H A D | CensusColumnChildrenBornAliveTest.php | 54 $child2 = $this->createMock(Individual::class); 55 $child2->method('getBirthDate')->willReturn(new Date('02 FEB 1904')); 56 $child2->method('getDeathDate')->willReturn(new Date('20 DEC 1912')); 71 $child2,
|
/webtrees/resources/views/statistics/families/ |
H A D | top10-list-age.phtml | 17 <?php $child2 = $record['child2']; ?> variable 21 …<a href="<?= e($child2->url()) ?>"><?= $child2->fullName() ?></a> <?= I18N::translate('and') ?> <a…
|
H A D | top10-nolist-age.phtml | 16 <?php $child2 = $record['child2']; ?> variable 19 <?= $child2->formatList() ?>
|