Well it works on 3.7 as is, it's just missing the ability to show infractions.
That's easily fixed by adding a few lines of code here and there. Firstly under the "Moderators Stats" misc_start hook find the following:
Code:
$moderatorinfo[$moderator['userid']]['threadforum'] = 0;
And after it, add:
Code:
$moderatorinfo[$moderator['userid']]['infraction'] = 0;
Then find:
Code:
// load thread information
$moderatorthreads = $db->query_read("
SELECT postuserid, dateline, forumid
FROM ".TABLE_PREFIX."thread
WHERE postuserid IN (".implode(",",$moderatorids).")
AND dateline >= $settings_days_time
");
while ($moderatorthread = $db->fetch_array($moderatorthreads))
{
if ($moderatorthread['dateline'] >= $settings_thread)
{
$moderatorinfo[$moderatorthread['postuserid']]['thread']++;
}
if (in_array($moderatorthread['forumid'], $moderatorinfo[$moderatorthread['postuserid']]['forums']) && $moderatorthread['dateline'] >= $settings_thread_forum)
{
$moderatorinfo[$moderatorthread['postuserid']]['threadforum']++;
}
}
And after it add:
Code:
//Obtain warning information
$moderatorinfractions = $db->query_read("
SELECT whoadded, points, dateline
FROM ".TABLE_PREFIX."infraction
WHERE whoadded IN (".implode(",",$moderatorids).")
AND dateline >= $settings_days_time
");
while ($moderatorinfraction = $db->fetch_array($moderatorinfractions))
{
if ($moderatorinfraction['dateline'] >= $settings_thread)
{
$moderatorinfo[$moderatorinfraction['whoadded']]['infraction']++;
}
}
Now you just have to add it into the templates, so go to MODERATOR_STATS and after:
Code:
<td class="thead" valign="top" nowrap="nowrap">
<a href="misc.php?$session[sessionurl]do=moderator_stats&order=$oppositesort&sort=modlog">$vbphrase[total_moderator_actions]</a> $sortarrow[modlog]
</td>
Add:
Code:
<td class="thead" valign="top" nowrap="nowrap">
<a href="misc.php?$session[sessionurl]do=moderator_stats&order=$oppositesort&sort=infraction">Infractions</a> $sortarrow[infraction]
</td>
Note: I couldn't be bothered with phrasing. If you're wanting that kind of thing, add it yourself.
And finally in moderator_stats_bit_user find:
Code:
<td class="$bgclass">$moderatorstats[modlog]</td>
And after add:
Code:
<td class="$bgclass">$moderatorstats[infraction]</td>
You can put those columns anywhere you want, but I like them after the actions.
That should be everything. There's no "total infractions" or fancy addition to the expanded AJAX information, but it works.