vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Group Discussions Unknown Location (https://vborg.vbsupport.ru/showthread.php?t=286397)

Amaury 08-06-2012 09:48 PM

Group Discussions Unknown Location
 
When I'm viewing deleted, moderated, or new group discussions, it gives me an unknown location in the activity instead of a Viewing Deleted and Viewing Moderated like with other deleted and moderated things. In this case, it should be Viewing Deleted Group Discussions and Viewing Moderated Group Discussions.

How can I fix this?

kh99 08-07-2012 12:11 AM

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';
}


Amaury 08-08-2012 02:49 AM

Quote:

Originally Posted by kh99 (Post 2355118)
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:

http://i101.photobucket.com/albums/m...wnLocation.png

Amaury 01-30-2013 11:29 PM

Okay, so I added this plugin (credit goes to Joe for helping over on the official vBulletin site), which works:

Code:

if (strpos($userinfo['location'], 'moderation.php?do=viewdiscussions') !== false)
{
  $userinfo['action'] = 'Viewing Moderated Group Discussions';
  $handled = true;
}

However, how do I separate it? One for deleted discussions -- Viewing Deleted Group Discussions -- and one for moderated discussions -- Viewing Moderated Group Discussions. I'm currently using Viewing Moderated Group Discussions for both.

I tried adding the deleted and moderated specifiers at the end: moderation.php?do=viewdiscussions&type=deleted and moderation.php?do=viewdiscussions&type=moderated. However, those didn't seem to do anything.

Thanks!

Amaury 02-04-2013 09:54 PM

Anyone?


All times are GMT. The time now is 02:42 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01001 seconds
  • Memory Usage 1,725KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete