Searched refs:year1 (Results 1 – 5 of 5) sorted by relevance
/webtrees/app/ |
H A D | Statistics.php | 924 * @param int $year1 929 public function statsBirthQuery(int $year1 = -1, int $year2 = -1): Builder argument 931 return $this->individual_repository->statsBirthQuery($year1, $year2); 935 * @param int $year1 940 public function statsBirthBySexQuery(int $year1 = -1, int $year2 = -1): Builder argument 942 return $this->individual_repository->statsBirthBySexQuery($year1, $year2); 1021 * @param int $year1 1026 public function statsDeathQuery(int $year1 = -1, int $year2 = -1): Builder argument 1028 return $this->individual_repository->statsDeathQuery($year1, $year2); 1032 * @param int $year1 [all …]
|
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 284 * @param int $year1 289 public function chartNoChildrenFamilies(int $year1 = -1, int $year2 = -1): string argument 294 ->chartNoChildrenFamilies($no_child_fam, $year1, $year2); 552 * @param int $year1 557 public function statsChildrenQuery(int $year1 = -1, int $year2 = -1): array argument 564 if ($year1 >= 0 && $year2 >= 0) { 573 ->whereBetween('d_year', [$year1, $year2]); 694 * @param int $year1 699 public function monthFirstChildQuery(int $year1 = -1, int $year2 = -1): Builder argument 730 if ($year1 >= 0 && $year2 >= 0) { [all …]
|
H A D | IndividualRepository.php | 677 * @param int $year1 682 public function statsBirthQuery(int $year1 = -1, int $year2 = -1): Builder argument 691 if ($year1 >= 0 && $year2 >= 0) { 692 $query->whereBetween('d_year', [$year1, $year2]); 701 * @param int $year1 706 public function statsBirthBySexQuery(int $year1 = -1, int $year2 = -1): Builder argument 708 return $this->statsBirthQuery($year1, $year2) 735 * @param int $year1 740 public function statsDeathQuery(int $year1 = -1, int $year2 = -1): Builder argument 749 if ($year1 >= 0 && $year2 >= 0) { [all …]
|
/webtrees/app/Statistics/Google/ |
H A D | ChartNoChildrenFamilies.php | 52 * @param int $year1 57 private function queryRecords(int $year1, int $year2): array argument 73 if ($year1 >= 0 && $year2 >= 0) { 74 $query->whereBetween('d_year', [$year1, $year2]); 84 * @param int $year1 91 int $year1 = -1, argument 103 foreach ($this->queryRecords($year1, $year2) as $record) {
|
/webtrees/app/Date/ |
H A D | AbstractCalendarDate.php | 360 [$year1, $month1, $day1] = $this->calendar->jdToYmd($this->minimum_julian_day); 363 $years = $year2 - $year1; 368 $days += $this->calendar->daysInMonth($year1, $month1);
|