Home
last modified time | relevance | path

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

/plugin/statdisplay/helper/
Dlog.php106 $day = date('d', $date);
145 $this->logdata[$month][$type]['day'][$day]['count'] =
146 isset($this->logdata[$month][$type]['day'][$day]['count']) ?
147 $this->logdata[$month][$type]['day'][$day]['count'] + 1 :
158 $this->logdata[$month][$type]['day'][$day]['bytes'] =
159 isset($this->logdata[$month][$type]['day'][$day]['bytes']) ?
160 $this->logdata[$month][$type]['day'][$day]['bytes'] + $size
168 $this->logdata[$month]['usertraffic'][$day][$user] =
169 isset($this->logdata[$month]['usertraffic'][$day][$user]) ?
170 $this->logdata[$month]['usertraffic'][$day][$user] + $size :
[all …]
Dgraph.php36 case 'month by day':
37 $this->monthby('day', $from);
42 case 'traffic by day':
43 $this->trafficby('day', $from);
100 * Show month access by day or hour
102 * @param string $by either day or hour
142 * Show month traffic by day or hour
144 * @param string $by either day or hour
190 // get work day average
193 // $avg = $avg / 7 *5; //work day average
Dtable.php38 case 'month by day':
39 $this->monthby('day', $from);
139 * @param string $by either 'day' or 'hour'
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')));
[all …]