Searched refs:maxtoshow (Results 1 – 2 of 2) sorted by relevance
/webtrees/app/Statistics/Repository/ |
H A D | IndividualRepository.php | 94 * @param int $maxtoshow 98 …unction commonGivenQuery(string $sex, string $type, bool $show_tot, int $threshold, int $maxtoshow) argument 144 $nameList = array_slice($nameList, 0, $maxtoshow); 186 * @param int $maxtoshow 190 public function commonGiven(int $threshold = 1, int $maxtoshow = 10): string argument 192 return $this->commonGivenQuery('B', 'nolist', false, $threshold, $maxtoshow); 199 * @param int $maxtoshow 203 public function commonGivenTotals(int $threshold = 1, int $maxtoshow = 10): string argument 205 return $this->commonGivenQuery('B', 'nolist', true, $threshold, $maxtoshow); 212 * @param int $maxtoshow [all …]
|
/webtrees/app/ |
H A D | Statistics.php | 2201 * @param string $maxtoshow 2205 public function commonGiven(string $threshold = '1', string $maxtoshow = '10'): string argument 2207 return $this->individual_repository->commonGiven((int) $threshold, (int) $maxtoshow); 2212 * @param string $maxtoshow 2216 public function commonGivenTotals(string $threshold = '1', string $maxtoshow = '10'): string argument 2218 return $this->individual_repository->commonGivenTotals((int) $threshold, (int) $maxtoshow); 2223 * @param string $maxtoshow 2227 public function commonGivenList(string $threshold = '1', string $maxtoshow = '10'): string argument 2229 return $this->individual_repository->commonGivenList((int) $threshold, (int) $maxtoshow); 2234 * @param string $maxtoshow [all …]
|