/webtrees/app/ |
H A D | Individual.php | 105 … if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_BIRTH > date('Y')) { 116 … if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_DEATH > date('Y')) { 234 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * $MAX_ALIVE_AGE) { 254 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE + 45)) { 267 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 10)) { 278 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE + 40)) { 289 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 15)) { 300 … if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 30)) { 365 if ($date->isOK()) { 395 if ($date->isOK()) { [all …]
|
H A D | Fact.php | 544 if ($date->isOK()) { 591 if ($this->date()->isOK()) { 612 if ($a->date()->isOK() && $b->date()->isOK()) { 720 if ($fact->date()->isOK()) {
|
H A D | Age.php | 68 $this->is_valid = $x->isOK() && $y->isOK();
|
H A D | Date.php | 391 public function isOK(): bool function in Fisharebest\\Webtrees\\Date 406 if ($this->isOK()) {
|
H A D | Relationship.php | 506 $date1->isOK() && 507 $date2->isOK() &&
|
/webtrees/resources/views/ |
H A D | fact-parents-age.phtml | 19 <?php if ($family instanceof Family && $birth_date->isOK()) : ?> 22 <?php if ($parent->getBirthDate()->isOK()) : ?> 24 …$parent->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDe… 26 …$parent->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDe…
|
H A D | individual-page-title.phtml | 18 <?php if ($record->getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?>
|
H A D | fact-association-structure.phtml | 60 if ($person !== $parent && $person->getBirthDate()->isOK() && $fact->date()->isOK()) {
|
/webtrees/resources/views/modules/relatives/ |
H A D | family.phtml | 136 if (!$prev->isOK() && $fact->date()->isOK()) { 173 if ($bfact->date()->isOK()) { 186 <?php if ($prev->isOK() && $next->isOK()) : ?>
|
/webtrees/app/Module/ |
H A D | LifespansChartModule.php | 185 if ($place_id !== 0 && $start_date->isOK() && $end_date->isOK()) { 189 } elseif ($start_date->isOK() && $end_date->isOK()) { 287 if ($item->getEstimatedDeathDate()->isOK()) { 310 if ($item->getEstimatedBirthDate()->isOK()) {
|
H A D | TimelineChartModule.php | 248 if ($bdate->isOK()) { 267 if ($date->isOK()) {
|
/webtrees/app/Census/ |
H A D | CensusColumnChildrenLiving.php | 51 $born_before = $birth->isOK() && Date::compare($birth, $this->date()) < 0; 52 … $died_after = $death->isOK() && Date::compare($death, $this->date()) > 0 || !$death->isOK();
|
H A D | CensusColumnAgeMarried.php | 41 if ($individual->getBirthDate()->isOK()) { 44 if ($fact->date()->isOK()) {
|
H A D | CensusColumnChildrenDied.php | 47 ->filter(fn (Individual $child): bool => $child->getBirthDate()->isOK() && 50 $child->getDeathDate()->isOK() &&
|
/webtrees/app/Services/ |
H A D | RelationshipService.php | 434 if ($dob1->isOK() && $dob2->isOK()) { 455 if ($dob1->isOK() && $dob2->isOK()) { 476 if ($dob1->isOK() && $dob2->isOK()) {
|
/webtrees/app/Http/RequestHandlers/ |
H A D | IndividualPage.php | 194 if ($birth_date->isOK() || $birth_place->id() !== 0) { 203 if ($death_date->isOK() || $death_place->id() !== 0) {
|
/webtrees/resources/views/selects/ |
H A D | family.phtml | 15 <?php if ($marriage_date->isOK()) : ?>
|
/webtrees/tests/app/Module/ |
H A D | AustrianHistoricEventsTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | USPresidentsTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | DutchPrimeMinistersTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | LowCountriesRulersTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | FrenchHistoryTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | BritishPrimeMinistersTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | BritishMonarchsTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|
H A D | BritishSocialHistoryTest.php | 38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
|