Searched refs:marriageQuery (Results 1 – 1 of 1) sorted by relevance
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 1447 …private function marriageQuery(string $type, string $age_dir, string $sex, bool $show_years): stri… function in Fisharebest\\Webtrees\\Statistics\\Repository\\FamilyRepository 1530 return $this->marriageQuery('full', 'ASC', 'F', false); 1540 return $this->marriageQuery('name', 'ASC', 'F', false); 1552 return $this->marriageQuery('age', 'ASC', 'F', (bool) $show_years); 1562 return $this->marriageQuery('full', 'DESC', 'F', false); 1572 return $this->marriageQuery('name', 'DESC', 'F', false); 1584 return $this->marriageQuery('age', 'DESC', 'F', (bool) $show_years); 1594 return $this->marriageQuery('full', 'ASC', 'M', false); 1604 return $this->marriageQuery('name', 'ASC', 'M', false); 1616 return $this->marriageQuery('age', 'ASC', 'M', (bool) $show_years); [all …]
|