Home
last modified time | relevance | path

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

/plugin/statdisplay/helper/
H A Dlog.php149 $this->logdata[$month][$type]['hour'][$hour]['count'] =
150 isset($this->logdata[$month][$type]['hour'][$hour]['count']) ?
162 $this->logdata[$month][$type]['hour'][$hour]['bytes'] =
163 isset($this->logdata[$month][$type]['hour'][$hour]['bytes']) ?
183 $this->logdata[$month][$type]['hour'][$hour]['visitor'] =
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 :
255 $this->logdata[$month]['status']['hour'][$hour][$status] =
256 isset($this->logdata[$month]['status']['hour'][$hour][$status]) ?
[all …]
H A Dgraph.php39 case 'month by hour':
40 $this->monthby('hour', $from);
45 case 'traffic by hour':
46 $this->trafficby('hour', $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
H A Dtable.php41 case 'month by hour':
42 $this->monthby('hour', $from);
139 * @param string $by either 'day' or 'hour'
240 $this->cell($this->log->avg($data['hits']['hour'], 'count'));
241 $this->cell($this->log->max($data['hits']['hour'], 'count'));
/plugin/statdisplay/pchart/
H A DConversionHelpers.php32 $Hour = floor ( $Value / 3600 );
33 $Minute = floor ( ($Value - $Hour * 3600) / 60 );
34 $Second = floor ( $Value - $Hour * 3600 - $Minute * 60 );
36 if (strlen ( $Hour ) == 1) {
37 $Hour = "0" . $Hour;
46 return ($Hour . ":" . $Minute . ":" . $Second);