Lines Matching refs:log

14     private $log = null;  variable in helper_plugin_statdisplay_table
29 $this->log = plugin_load('helper', 'statdisplay_log');
72 $pct = sprintf('%.2f', $this->log->progress());
85 $this->log->logdata[$date]['referer_url'],
86 $this->log->logdata[$date]['referer']['count'],
100 $this->log->logdata[$date]['entry'],
101 $this->log->logdata[$date]['page']['all']['count'],
115 $this->log->logdata[$date]['useragent'],
116 $this->log->logdata[$date]['page']['all']['count'],
130 $this->log->logdata[$date]['page_url'],
131 $this->log->logdata[$date]['page']['all']['count'],
145 $data = $this->log->logdata[$date];
199 $data = $this->log->logdata[$date];
240 $this->cell($this->log->avg($data['hits']['hour'], 'count'));
241 $this->cell($this->log->max($data['hits']['hour'], 'count'));
246 $this->cell($this->log->avg($data['hits']['day'], 'count'));
247 $this->cell($this->log->max($data['hits']['day'], 'count'));
252 $this->cell($this->log->avg($data['media']['day'], 'count'));
253 $this->cell($this->log->max($data['media']['day'], 'count'));
258 $this->cell($this->log->avg($data['page']['day'], 'count'));
259 $this->cell($this->log->max($data['page']['day'], 'count'));
264 $this->cell(filesize_h($this->log->avg($data['hits']['day'], 'bytes')));
265 $this->cell(filesize_h($this->log->max($data['hits']['day'], 'bytes')));
272 foreach ((array)$this->log->logdata[$date]['status']['all'] as $code => $count) {
315 foreach ((array)$this->log->logdata as $month => $data) {
327 $this->cell(round($this->log->avg($data['hits']['day'] ?? [], 'count'))); // Hits
328 $this->cell(round($this->log->avg($data['media']['day'] ?? [], 'count'))); // Files
329 $this->cell(round($this->log->avg($data['page']['day'] ?? [], 'count'))); // Pages
330 $this->cell(round($this->log->avg($data['hits']['day'] ?? [], 'visitor'))); // Visits
349 $usertraffic = $this->log->usertraffic($date);
351 …$this->listtable($usertraffic, $this->log->sum($usertraffic), $this->getLang('t_usertraffic'), tru…
400 if ($row > $this->log->top_limit) break;