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:
Chris Morgan
2004-12-07 22:42:32 +00:00
committed by WineHQ
parent 98c6e6253e
commit 7225512fc3

View File

@@ -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";