Searched refs:parentsQuery (Results 1 – 1 of 1) sorted by relevance
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 799 …private function parentsQuery(string $type, string $age_dir, string $sex, bool $show_years): string function in Fisharebest\\Webtrees\\Statistics\\Repository\\FamilyRepository 882 return $this->parentsQuery('full', 'ASC', 'F', false); 892 return $this->parentsQuery('name', 'ASC', 'F', false); 904 return $this->parentsQuery('age', 'ASC', 'F', (bool) $show_years); 914 return $this->parentsQuery('full', 'DESC', 'F', false); 924 return $this->parentsQuery('name', 'DESC', 'F', false); 936 return $this->parentsQuery('age', 'DESC', 'F', (bool) $show_years); 946 return $this->parentsQuery('full', 'ASC', 'M', false); 956 return $this->parentsQuery('name', 'ASC', 'M', false); 968 return $this->parentsQuery('age', 'ASC', 'M', (bool) $show_years); [all …]
|