Home
last modified time | relevance | path

Searched refs:getDeathDate (Results 1 – 8 of 8) sorted by relevance

/webtrees/resources/views/
H A Dfact-parents-age.phtml24 …nt->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDeathDa…
26 …nt->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDeathDa…
H A Dindividual-page-title.phtml18 <?php if ($record->getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?>
/webtrees/app/Census/
H A DCensusColumnChildrenDied.php49 … $child->getBirthDate()->minimumJulianDay() !== $child->getDeathDate()->minimumJulianDay() &&
50 $child->getDeathDate()->isOK() &&
51 Date::compare($child->getDeathDate(), $this->date()) < 0)
H A DAbstractCensusColumnCondition.php168 …return $individual->getDeathDate()->isOK() && Date::compare($individual->getDeathDate(), $this->da…
H A DCensusColumnChildrenBornAlive.php49 … $child->getBirthDate()->minimumJulianDay() !== $child->getDeathDate()->minimumJulianDay())
H A DCensusColumnChildrenLiving.php49 $death = $child->getDeathDate();
/webtrees/app/
H A DIndividual.php392 public function getDeathDate(): Date function in Fisharebest\\Webtrees\\Individual
434 $death_date = "\u{2068}" . strip_tags($this->getDeathDate()->display()) . "\u{2069}";
438 $death_year = $this->getDeathDate()->maximumDate()->format('%Y');
545 $tmp = $this->getDeathDate();
/webtrees/app/Http/RequestHandlers/
H A DIndividualPage.php151 $age = (string) new Age($individual->getBirthDate(), $individual->getDeathDate());
200 $death_date = $individual->getDeathDate();