Lines Matching +full:php +full:- +full:version
1 <?php
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
46 $this->tree = $tree;
47 $this->user_service = $user_service;
61 // index.php?context=gedcom
62 $page_name = 'index.php';
63 $page_parameter = 'gedcom:' . $this->tree->id();
64 } elseif ($page_name === 'index.php') {
65 // index.php?context=user
66 $user = $this->user_service->findByIdentifier($page_parameter);
67 $page_parameter = 'user:' . ($user instanceof UserInterface ? $user->id() : Auth::id());
71 ->where('gedcom_id', '=', $this->tree->id())
72 ->where('page_name', '=', $page_name)
73 ->where('page_parameter', '=', $page_parameter)
74 ->value('page_count');
77 'statistics/hit-count',
91 return $this->hitCountQuery('', $page_parameter);
101 return $this->hitCountQuery('index.php', $page_parameter);
111 return $this->hitCountQuery('individual.php', $page_parameter);
121 return $this->hitCountQuery('family.php', $page_parameter);
131 return $this->hitCountQuery('source.php', $page_parameter);
141 return $this->hitCountQuery('repo.php', $page_parameter);
151 return $this->hitCountQuery('note.php', $page_parameter);
161 return $this->hitCountQuery('mediaviewer.php', $page_parameter);