Home
last modified time | relevance | path

Searched refs:page_parameter (Results 1 – 5 of 5) sorted by relevance

/webtrees/app/Statistics/Repository/
H A DHitCountRepository.php54 * @param string $page_parameter
58 private function hitCountQuery(string $page_name, string $page_parameter = ''): string argument
63 $page_parameter = 'gedcom:' . $this->tree->id();
66 $user = $this->user_service->findByIdentifier($page_parameter);
67 $page_parameter = 'user:' . ($user instanceof UserInterface ? $user->id() : Auth::id());
73 ->where('page_parameter', '=', $page_parameter)
85 * @param string $page_parameter
89 public function hitCount(string $page_parameter = ''): string argument
91 return $this->hitCountQuery('', $page_parameter);
95 * @param string $page_parameter
[all …]
/webtrees/app/Statistics/Repository/Interfaces/
H A DHitCountRepositoryInterface.php30 * @param string $page_parameter
34 public function hitCount(string $page_parameter = ''): string; argument
39 * @param string $page_parameter
43 public function hitCountUser(string $page_parameter = ''): string; argument
48 * @param string $page_parameter
52 public function hitCountIndi(string $page_parameter = ''): string; argument
57 * @param string $page_parameter
61 public function hitCountFam(string $page_parameter = ''): string; argument
66 * @param string $page_parameter
70 public function hitCountSour(string $page_parameter = ''): string; argument
[all …]
/webtrees/app/
H A DStatistics.php2654 * @param string $page_parameter
2658 public function hitCount(string $page_parameter = ''): string argument
2660 return $this->hit_count_repository->hitCount($page_parameter);
2664 * @param string $page_parameter
2668 public function hitCountUser(string $page_parameter = ''): string argument
2670 return $this->hit_count_repository->hitCountUser($page_parameter);
2674 * @param string $page_parameter
2678 public function hitCountIndi(string $page_parameter = ''): string argument
2680 return $this->hit_count_repository->hitCountIndi($page_parameter);
2684 * @param string $page_parameter
[all …]
/webtrees/app/Module/
H A DTopPageViewsModule.php85 $record = Registry::gedcomRecordFactory()->make($row->page_parameter, $tree);
/webtrees/
H A Dphpstan-baseline.neon6502 message: '#^Cannot access property \$page_parameter on mixed\.$#'