Home
last modified time | relevance | path

Searched refs:husb (Results 1 – 6 of 6) sorted by relevance

/webtrees/resources/views/lists/
H A Dfamilies-table.phtml171 …<?php $husb = $family->husband() ?? Registry::individualFactory()->new('H', '0 @H@ INDI', null, $f… variable
176 …dividual::NOMEN_NESCIO], 'AAAA', implode(',', array_reverse(explode(',', $husb->sortName()))))) ?>…
177 <?php foreach ($husb->getAllNames() as $num => $name) : ?>
178 … <?php if ($name['type'] !== '_MARNM' || $num === $husb->getPrimaryName()) : ?>
180 …ied name') : '' ?>" href="<?= e($family->url()) ?>" class="<?= $num === $husb->getPrimaryName() ?…
183 <?php if ($num === $husb->getPrimaryName()) : ?>
184 … <small><?= view('icons/sex', ['sex' => $husb->sex()]) ?></small>
189 <?= view('lists/individual-table-parents', ['individual' => $husb]) ?>
192 …e([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', $husb->sortName())) ?>"><…
195 <?php $age = new Age($husb->getBirthDate(), $family->getMarriageDate()) ?>
[all …]
/webtrees/app/
H A DFamily.php36 private Individual|null $husb = null; variable in Fisharebest\\Webtrees\\Family
58 $this->husb = Registry::individualFactory()->make($match[1], $tree);
88 if ($this->husb instanceof Individual && $this->husb->canShowName($access_level)) {
89 return $this->husb;
322 if ($this->husb instanceof Individual) {
323 …$husb_names = array_filter($this->husb->getAllNames(), static fn (array $x): bool => $x['type'] !=…
/webtrees/app/Services/
H A DCalendarService.php171 $husb = $record->husband();
174 … if ($filterof === 'living' && ($husb && $husb->isDead() || $wife && $wife->isDead())) {
223 $husb = $record->husband();
224 if ($husb === null || $husb->isDead()) {
369 $husb = $record->husband();
372 … if ($filterof === 'living' && ($husb && $husb->isDead() || $wife && $wife->isDead())) {
H A DGedcomImportService.php339 $husb = $match[1];
341 $husb = '';
356 'f_husb' => $husb,
/webtrees/app/Http/RequestHandlers/
H A DAddSpouseToFamilyAction.php69 $husb = $family->facts(['HUSB'], false, null, true)->first();
72 if ($husb === null && $spouse->sex() === 'M') {
76 } elseif ($husb === null) {
/webtrees/app/Statistics/Repository/
H A DFamilyRepository.php1116 $husb = $family->husband();
1120 $husb instanceof Individual &&
1122 ($husb->getAllDeathDates() || !$husb->isDead()) &&