Display on the appdb stats page the active users within the last 30 and 60
days as well as the current 90 days.
This commit is contained in:
@@ -42,6 +42,18 @@ echo " <td>Images:</td>\n";
|
||||
echo " <td>".getNumberOfImages()."</td>\n";
|
||||
echo "</tr>\n\n";
|
||||
|
||||
/* Display the active users in the last 30 days */
|
||||
echo "<tr class=color4>\n";
|
||||
echo " <td>Users active within the last 30 days:</td>\n";
|
||||
echo " <td>".getActiveUsersWithinDays(30)."</td>\n";
|
||||
echo "</tr>\n\n";
|
||||
|
||||
/* Display the active users in the last 60 days */
|
||||
echo "<tr class=color4>\n";
|
||||
echo " <td>Users active within the last 60 days:</td>\n";
|
||||
echo " <td>".getActiveUsersWithinDays(60)."</td>\n";
|
||||
echo "</tr>\n\n";
|
||||
|
||||
/* Display the active users in the last 90 days */
|
||||
echo "<tr class=color4>\n";
|
||||
echo " <td>Users active within the last 90 days:</td>\n";
|
||||
|
||||
Reference in New Issue
Block a user