/webtrees/app/ |
H A D | Individual.php | 362 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 D | CensusColumnChildrenBornAlive.php | 47 ->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 D | CensusColumnChildrenDied.php | 47 ->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 D | CensusColumnMonthIfBornWithinYear.php | 39 $birth_jd = $individual->getBirthDate()->julianDay(); 43 return ucfirst(strtolower($individual->getBirthDate()->minimumDate()->format('%O')));
|
H A D | CensusColumnAgeMarried.php | 41 if ($individual->getBirthDate()->isOK()) { 45 $age = new Age($individual->getBirthDate(), $fact->date());
|
H A D | CensusColumnChildrenLiving.php | 48 $birth = $child->getBirthDate();
|
/webtrees/resources/views/ |
H A D | fact-parents-age.phtml | 22 <?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 D | fact-association-structure.phtml | 60 if ($person !== $parent && $person->getBirthDate()->isOK() && $fact->date()->isOK()) { 61 $age = new Age($person->getBirthDate(), $fact->date());
|
H A D | individual-page-title.phtml | 18 <?php if ($record->getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?>
|
H A D | fact-date.phtml | 68 $birth_date = $record->getBirthDate();
|
/webtrees/app/Http/RequestHandlers/ |
H A D | IndividualPage.php | 151 $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 D | RelationshipService.php | 432 $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 D | chart.phtml | 352 if ($spouse->getBirthDate()->isOK()) { 353 $age = (string) new Age($spouse->getBirthDate(), $gdate);
|
H A D | page.phtml | 78 <?php if ($individual->getBirthDate()->isOK()) : ?>
|
/webtrees/resources/views/lists/ |
H A D | families-table.phtml | 195 <?php $age = new Age($husb->getBirthDate(), $family->getMarriageDate()) ?> 220 <?php $age = new Age($wife->getBirthDate(), $family->getMarriageDate()) ?>
|
/webtrees/resources/views/edit/ |
H A D | reorder-children.phtml | 27 …ard my-2 wt-sortable-item" data-wt-sort-by-date="<?= $fact->target()->getBirthDate()->julianDay() …
|
/webtrees/app/Module/ |
H A D | TimelineChartModule.php | 247 $bdate = $individual->getBirthDate();
|
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 1300 $husb_birt_jd = $family->husband()->getBirthDate()->minimumJulianDay(); 1301 $wife_birt_jd = $family->wife()->getBirthDate()->minimumJulianDay();
|
H A D | IndividualRepository.php | 1149 …teAge(Registry::timestampFactory()->now()->julianDay() - $individual->getBirthDate()->minimumJulia…
|
/webtrees/ |
H A D | phpstan-baseline.neon | 9970 message: '#^Cannot call method getBirthDate\(\) on Fisharebest\\Webtrees\\Individual\|null\.$#' 11068 message: '#^Cannot call method getBirthDate\(\) on Fisharebest\\Webtrees\\GedcomRecord\|null\.$#'
|