Lines Matching refs:record
162 $record = Registry::individualFactory()->make($row->xref, $tree, $row->gedcom);
163 assert($record instanceof Individual);
165 if ($filterof === 'living' && $record->isDead()) {
169 $record = Registry::familyFactory()->make($row->xref, $tree, $row->gedcom);
170 assert($record instanceof Family);
171 $husb = $record->husband();
172 $wife = $record->wife();
181 foreach ($record->facts([$row->d_fact]) as $fact) {
216 $record = $fact->record();
219 if ($record instanceof Individual && $record->isDead()) {
222 if ($record instanceof Family) {
223 $husb = $record->husband();
227 $wife = $record->wife();
247 …t(static fn (Fact $x, Fact $y): int => GedcomRecord::nameComparator()($x->record(), $y->record()));
360 … $record = Registry::individualFactory()->make($row->xref, $tree, $row->gedcom);
361 assert($record instanceof Individual);
363 if ($filterof === 'living' && $record->isDead()) {
367 $record = Registry::familyFactory()->make($row->xref, $tree, $row->gedcom);
368 assert($record instanceof Family);
369 $husb = $record->husband();
370 $wife = $record->wife();
381 foreach ($record->facts([$row->d_fact]) as $fact) {