Home
last modified time | relevance | path

Searched refs:isOK (Results 1 – 25 of 44) sorted by relevance

12

/webtrees/app/
H A DIndividual.php105 … 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 DFact.php544 if ($date->isOK()) {
591 if ($this->date()->isOK()) {
612 if ($a->date()->isOK() && $b->date()->isOK()) {
720 if ($fact->date()->isOK()) {
H A DAge.php68 $this->is_valid = $x->isOK() && $y->isOK();
H A DDate.php391 public function isOK(): bool function in Fisharebest\\Webtrees\\Date
406 if ($this->isOK()) {
H A DRelationship.php506 $date1->isOK() &&
507 $date2->isOK() &&
/webtrees/resources/views/
H A Dfact-parents-age.phtml19 <?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 Dindividual-page-title.phtml18 <?php if ($record->getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?>
H A Dfact-association-structure.phtml60 if ($person !== $parent && $person->getBirthDate()->isOK() && $fact->date()->isOK()) {
/webtrees/resources/views/modules/relatives/
H A Dfamily.phtml136 if (!$prev->isOK() && $fact->date()->isOK()) {
173 if ($bfact->date()->isOK()) {
186 <?php if ($prev->isOK() && $next->isOK()) : ?>
/webtrees/app/Module/
H A DLifespansChartModule.php185 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 DTimelineChartModule.php248 if ($bdate->isOK()) {
267 if ($date->isOK()) {
/webtrees/app/Census/
H A DCensusColumnChildrenLiving.php51 $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 DCensusColumnAgeMarried.php41 if ($individual->getBirthDate()->isOK()) {
44 if ($fact->date()->isOK()) {
H A DCensusColumnChildrenDied.php47 ->filter(fn (Individual $child): bool => $child->getBirthDate()->isOK() &&
50 $child->getDeathDate()->isOK() &&
/webtrees/app/Services/
H A DRelationshipService.php434 if ($dob1->isOK() && $dob2->isOK()) {
455 if ($dob1->isOK() && $dob2->isOK()) {
476 if ($dob1->isOK() && $dob2->isOK()) {
/webtrees/app/Http/RequestHandlers/
H A DIndividualPage.php194 if ($birth_date->isOK() || $birth_place->id() !== 0) {
203 if ($death_date->isOK() || $death_place->id() !== 0) {
/webtrees/resources/views/selects/
H A Dfamily.phtml15 <?php if ($marriage_date->isOK()) : ?>
/webtrees/tests/app/Module/
H A DAustrianHistoricEventsTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DUSPresidentsTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DDutchPrimeMinistersTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DLowCountriesRulersTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DFrenchHistoryTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DBritishPrimeMinistersTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DBritishMonarchsTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);
H A DBritishSocialHistoryTest.php38 self::assertTrue($fact->date()->isOK(), 'No date found in: ' . $gedcom);

12