Home
last modified time | relevance | path

Searched refs:estimated_birth_date (Results 1 – 2 of 2) sorted by relevance

/webtrees/resources/views/lists/
H A Dindividuals-table.phtml225 <?php $estimated_birth_date = $individual->getEstimatedBirthDate(); ?> variable
227 <td data-sort="<?= $estimated_birth_date->julianDay() ?>">
235 <?= $estimated_birth_date->display($tree, null, true) ?>
240 <td class="text-center" data-sort="<?= - $estimated_birth_date->julianDay() ?>">
298 …<?php if ($estimated_birth_date->maximumJulianDay() > $hundred_years_ago && $estimated_birth_date-…
/webtrees/app/
H A DIndividual.php50 private Date|null $estimated_birth_date = null; variable in Fisharebest\\Webtrees\\Individual
535 if ($this->estimated_birth_date === null) {
538 $this->estimated_birth_date = $date;
542 if ($this->estimated_birth_date === null) {
606 $this->estimated_birth_date = new Date('EST ' . $year);
608 $this->estimated_birth_date = new Date(''); // always return a date object
613 return $this->estimated_birth_date;