Lines Matching refs:record
28 …$fact_age = Registry::elementFactory()->make($fact->tag() . ':AGE')->value($match[1], $record->tre…
34 … = Registry::elementFactory()->make($fact->tag() . ':HUSB:AGE')->value($match[1], $record->tree());
40 … = Registry::elementFactory()->make($fact->tag() . ':WIFE:AGE')->value($match[1], $record->tree());
50 $html .= ' ' . $date->display($cal_link ? $record->tree() : null, null, true);
56 if ($record instanceof Individual) {
59 $record === $fact->record() &&
60 $record->tree()->getPreference('SHOW_PARENTS_AGE') === '1'
63 $html .= view('fact-parents-age', ['individual' => $record, 'birth_date' => $date]);
68 $birth_date = $record->getBirthDate();
72 $death_event = $record->facts(['DEAT'])->first();
80 if ($tag === 'DEAT' || Date::compare($date, $death_date) <= 0 || !$record->isDead()) {
89 … $husb_age !== '' && !str_starts_with($husb_age, $age) && $record->sex() === 'M' ||
90 … $wife_age !== '' && !str_starts_with($wife_age, $age) && $record->sex() === 'F'
92 switch ($record->sex()) {
130 if ($fact->record() instanceof Family && $ageText !== '') {