Home
last modified time | relevance | path

Searched refs:show_years (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/Statistics/Repository/
H A DFamilyRepository.php795 * @param bool $show_years
799 …private function parentsQuery(string $type, string $age_dir, string $sex, bool $show_years): string argument
863 if ($show_years) {
898 * @param string $show_years
902 public function youngestMotherAge(string $show_years = ''): string argument
904 return $this->parentsQuery('age', 'ASC', 'F', (bool) $show_years);
930 * @param string $show_years
934 public function oldestMotherAge(string $show_years = ''): string argument
936 return $this->parentsQuery('age', 'DESC', 'F', (bool) $show_years);
962 * @param string $show_years
[all …]
H A DIndividualRepository.php1278 * @param bool $show_years
1282 private function averageLifespanQuery(string $sex, bool $show_years): string argument
1288 if ($show_years) {
1298 * @param bool $show_years
1302 public function averageLifespan(bool $show_years): string argument
1304 return $this->averageLifespanQuery('BOTH', $show_years);
1310 * @param bool $show_years
1314 public function averageLifespanFemale(bool $show_years): string argument
1316 return $this->averageLifespanQuery('F', $show_years);
1322 * @param bool $show_years
[all …]
/webtrees/app/
H A DStatistics.php1269 * @param string $show_years
1273 public function averageLifespan(string $show_years = ''): string argument
1275 return $this->individual_repository->averageLifespan((bool) $show_years);
1279 * @param string $show_years
1283 public function averageLifespanFemale(string $show_years = ''): string argument
1285 return $this->individual_repository->averageLifespanFemale((bool) $show_years);
1289 * @param string $show_years
1293 public function averageLifespanMale(string $show_years = ''): string argument
1295 return $this->individual_repository->averageLifespanMale((bool) $show_years);
1567 * @param string $show_years
[all …]