Home
last modified time | relevance | path

Searched refs:getBirthDate (Results 1 – 20 of 20) sorted by relevance

/webtrees/app/
H A DIndividual.php362 public function getBirthDate(): Date function in Fisharebest\\Webtrees\\Individual
433 $birth_date = "\u{2068}" . strip_tags($this->getBirthDate()->display()) . "\u{2069}";
437 $birth_year = $this->getBirthDate()->minimumDate()->format('%Y');
558 $tmp = $husband->getBirthDate();
566 $tmp = $wife->getBirthDate();
573 $tmp = $child->getBirthDate();
588 $tmp = $spouse->getBirthDate();
595 $tmp = $child->getBirthDate();
/webtrees/app/Census/
H A DCensusColumnChildrenBornAlive.php47 ->filter(fn (Individual $child): bool => $child->getBirthDate()->isOK() &&
48 Date::compare($child->getBirthDate(), $this->date()) < 0 &&
49 … $child->getBirthDate()->minimumJulianDay() !== $child->getDeathDate()->minimumJulianDay())
H A DCensusColumnChildrenDied.php47 ->filter(fn (Individual $child): bool => $child->getBirthDate()->isOK() &&
48 Date::compare($child->getBirthDate(), $this->date()) < 0 &&
49 … $child->getBirthDate()->minimumJulianDay() !== $child->getDeathDate()->minimumJulianDay() &&
H A DCensusColumnMonthIfBornWithinYear.php39 $birth_jd = $individual->getBirthDate()->julianDay();
43 return ucfirst(strtolower($individual->getBirthDate()->minimumDate()->format('%O')));
H A DCensusColumnAgeMarried.php41 if ($individual->getBirthDate()->isOK()) {
45 $age = new Age($individual->getBirthDate(), $fact->date());
H A DCensusColumnChildrenLiving.php48 $birth = $child->getBirthDate();
/webtrees/resources/views/
H A Dfact-parents-age.phtml22 <?php if ($parent->getBirthDate()->isOK()) : ?>
24 …<?= view('fact-parent-age', ['age' => new Age($parent->getBirthDate(), $birth_date), 'died' => $pa…
26 …<?= view('fact-parent-age', ['age' => new Age($parent->getBirthDate(), $birth_date), 'died' => $pa…
H A Dfact-association-structure.phtml60 if ($person !== $parent && $person->getBirthDate()->isOK() && $fact->date()->isOK()) {
61 $age = new Age($person->getBirthDate(), $fact->date());
H A Dindividual-page-title.phtml18 <?php if ($record->getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?>
H A Dfact-date.phtml68 $birth_date = $record->getBirthDate();
/webtrees/app/Http/RequestHandlers/
H A DIndividualPage.php151 $age = (string) new Age($individual->getBirthDate(), $individual->getDeathDate());
172 $age = (string) new Age($individual->getBirthDate(), $today);
191 $birth_date = $individual->getBirthDate();
/webtrees/app/Services/
H A DRelationshipService.php432 $dob1 = $person1->getBirthDate();
433 $dob2 = $person2->getBirthDate();
453 $dob1 = $person1->getBirthDate();
454 $dob2 = $person2->getBirthDate();
474 $dob1 = $person1->getBirthDate();
475 $dob2 = $person2->getBirthDate();
/webtrees/resources/views/modules/timeline-chart/
H A Dchart.phtml352 if ($spouse->getBirthDate()->isOK()) {
353 $age = (string) new Age($spouse->getBirthDate(), $gdate);
H A Dpage.phtml78 <?php if ($individual->getBirthDate()->isOK()) : ?>
/webtrees/resources/views/lists/
H A Dfamilies-table.phtml195 <?php $age = new Age($husb->getBirthDate(), $family->getMarriageDate()) ?>
220 <?php $age = new Age($wife->getBirthDate(), $family->getMarriageDate()) ?>
/webtrees/resources/views/edit/
H A Dreorder-children.phtml27 …ard my-2 wt-sortable-item" data-wt-sort-by-date="<?= $fact->target()->getBirthDate()->julianDay() …
/webtrees/app/Module/
H A DTimelineChartModule.php247 $bdate = $individual->getBirthDate();
/webtrees/app/Statistics/Repository/
H A DFamilyRepository.php1300 $husb_birt_jd = $family->husband()->getBirthDate()->minimumJulianDay();
1301 $wife_birt_jd = $family->wife()->getBirthDate()->minimumJulianDay();
H A DIndividualRepository.php1149 …teAge(Registry::timestampFactory()->now()->julianDay() - $individual->getBirthDate()->minimumJulia…
/webtrees/
H A Dphpstan-baseline.neon9970 message: '#^Cannot call method getBirthDate\(\) on Fisharebest\\Webtrees\\Individual\|null\.$#'
11068 message: '#^Cannot call method getBirthDate\(\) on Fisharebest\\Webtrees\\GedcomRecord\|null\.$#'