Home
last modified time | relevance | path

Searched +full:hits +(+path:plugin +path:statdisplay) -(+path:plugin +path:statdisplay +path:lang) (Results 1 – 3 of 3) sorted by relevance

/plugin/statdisplay/helper/
H A Dgraph.php67 $hits = array();
80 $hits[] = $data['hits']['all']['count'] ?? 0;
90 $this->getLang('hits'),
95 array($hits, $pages, $media, $visitors)
111 $hits = array();
122 $hits[] = $data['hits'][$by][$idx]['count'];
132 $this->getLang('hits'),
137 array($hits, $pages, $media, $visitors)
153 $hits = array();
161 $hits[] = $data['hits'][$by][$idx]['bytes'] / 1024;
[all …]
H A Dtable.php157 $this->head($this->getLang('hits'), 2);
164 $keys = array_keys((array)$data['hits'][$by]);
170 $this->cell($data['hits'][$by][$idx]['count']);
171 … $this->cell($this->pct($data['hits'][$by][$idx]['count'], $data['hits']['all']['count']));
180 … $this->cell($this->pct($data['hits'][$by][$idx]['visitor'], $data['hits']['all']['visitor']));
183 … $this->cell($this->pct($data['hits'][$by][$idx]['bytes'], $data['hits']['all']['bytes']));
303 $this->head($this->getLang('hits'));
307 $this->head($this->getLang('hits'));
327 $this->cell(round($this->log->avg($data['hits']['day'] ?? [], 'count'))); // Hits
332 $this->cell($data['hits']['all']['count']); // Hits
[all …]
H A Dlog.php135 foreach (array($thistype, 'hits') as $type) {
233 $this->logdata[$month]['hits']['all']['count'] =
234 isset($this->logdata[$month]['hits']['all']['count']) ?
235 $this->logdata[$month]['hits']['all']['count'] + 1 :
237 $this->logdata[$month]['hits']['day'][$day]['count'] =
238 isset($this->logdata[$month]['hits']['day'][$day]['count']) ?
239 $this->logdata[$month]['hits']['day'][$day]['count'] + 1 :
241 $this->logdata[$month]['hits']['hour'][$hour]['count'] =
242 isset($this->logdata[$month]['hits']['hour'][$hour]['count']) ?
243 $this->logdata[$month]['hits']['hour'][$hour]['count'] + 1 :