Quote:
Originally Posted by kh99
You can add it with a couple of plugins. Look at this article: https://vborg.vbsupport.ru/showthread.php?t=228112 and scroll down to "Instructions to Add your Page to the Who's Online List (WOL):". Of course you'll use moderation.php as the file name. One thing that's not shown is that you can check the parameter values (in the online_location_process plugin) using the array $values, so that you'd want the code to be something like:
Code:
if ($filename == 'moderation.php' AND $values['do'] == 'viewdiscussions')
{
if ($values['type'] == 'deleted')
$userinfo['activity'] = 'viewdiscussions_deleted';
else if ($values['type'] == 'moderated')
$userinfo['activity'] = 'viewdiscussions_moderated';
else if ($values['type'] == 'new')
$userinfo['activity'] = 'viewdiscussions_new';
}
|
Thank you.
I also just noticed I get it when confirming deletion of something: