diff options
author | Simon Rettberg | 2017-04-24 16:05:13 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-04-24 16:05:13 +0200 |
commit | e9aa7ceb89c487f5d2c2bb102f67618ebfcae08b (patch) | |
tree | 91bc5375129ab424baa51d591daf8858c7b07e82 /modules-available/statistics_reporting/inc/getdata.inc.php | |
parent | [inc/Database] Add ::queryAll() (diff) | |
download | slx-admin-e9aa7ceb89c487f5d2c2bb102f67618ebfcae08b.tar.gz slx-admin-e9aa7ceb89c487f5d2c2bb102f67618ebfcae08b.tar.xz slx-admin-e9aa7ceb89c487f5d2c2bb102f67618ebfcae08b.zip |
[statistics_reporting] Extend remote report by hwstats, date ranges, userstats
This implements #3108
Diffstat (limited to 'modules-available/statistics_reporting/inc/getdata.inc.php')
-rw-r--r-- | modules-available/statistics_reporting/inc/getdata.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules-available/statistics_reporting/inc/getdata.inc.php b/modules-available/statistics_reporting/inc/getdata.inc.php index da3a9a26..ae4d5aa4 100644 --- a/modules-available/statistics_reporting/inc/getdata.inc.php +++ b/modules-available/statistics_reporting/inc/getdata.inc.php @@ -29,6 +29,7 @@ class GetData $data["medianSessionLength_s"] = self::formatSeconds($data["medianSessionLength"]); $data["totalOffTime_s"] = self::formatSeconds($data["totalOffTime"]); } + $data['uniqueUsers'] = Queries::getUniqueUserCount(self::$from, self::$to); return $data; } |