Lines Matching refs:min_date
140 $min_date = $individual->getEstimatedBirthDate();
143 $parent_facts = $this->parentFacts($individual, 1, $min_date, $max_date);
147 … Collection => $this->spouseFacts($individual, $family->spouse($individual), $min_date, $max_date))
151 …$family): Collection => $this->childFacts($individual, $family, '_CHIL', '', $min_date, $max_date))
181 * @param Date $min_date
186 …vidual $person, Family $family, string $option, string $relation, Date $min_date, Date $max_date):… argument
481 … foreach ($this->childFacts($person, $cfamily, '_GCHI', 'son', $min_date, $max_date) as $fact) {
486 … foreach ($this->childFacts($person, $cfamily, '_GCHI', 'dau', $min_date, $max_date) as $fact) {
491 … foreach ($this->childFacts($person, $cfamily, '_GCHI', 'chi', $min_date, $max_date) as $fact) {
510 if ($option === '_CHIL' || $this->includeFact($fact, $min_date, $max_date)) {
541 if ($this->includeFact($fact, $min_date, $max_date)) {
574 if ($this->includeFact($fact, $min_date, $max_date)) {
613 * @param Date $min_date
618 …private function parentFacts(Individual $person, int $sosa, Date $min_date, Date $max_date): Colle… argument
705 … foreach ($this->childFacts($person, $family, '_SIBL', '', $min_date, $max_date) as $fact) {
712 … foreach ($this->childFacts($person, $sfamily, '_HSIB', '', $min_date, $max_date) as $fact) {
718 …foreach ($this->parentFacts($spouse, $spouse->sex() === 'F' ? 3 : 2, $min_date, $max_date) as $fac…
728 if ($this->includeFact($fact, $min_date, $max_date)) {
736 if ($this->includeFact($fact, $min_date, $max_date)) {
750 …if ($sosa === 1 && Date::compare($fact->date(), $min_date) < 0 || $this->includeFact($fact, $min_d…
783 * @param Date $min_date
788 …private function spouseFacts(Individual $individual, Individual $spouse, Date $min_date, Date $max… argument
814 if ($this->includeFact($fact, $min_date, $max_date)) {
827 * @param Date $min_date
832 private function includeFact(Fact $fact, Date $min_date, Date $max_date): bool argument
836 …return $fact_date->isOK() && Date::compare($min_date, $fact_date) <= 0 && Date::compare($fact_date…