vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Moderators Functions - FractalizeR: Show items, awaiting moderation in notifications area (https://vborg.vbsupport.ru/showthread.php?t=241301)

FractalizeR 04-25-2010 10:00 PM

FractalizeR: Show items, awaiting moderation in notifications area
 
1 Attachment(s)
What does it do?
This hack shows all items, that require moderation in a notifications area. Items are grouped by type:
  • Threads
  • Posts
  • Group messages
  • Visitor messages
  • Picture comments
  • Album pictures
  • Users
  • Calendar events

Clicking on a group redirects you to a moderation panel for that type of items.

You can also restrict, what usergroups can see notifications and what items you want to appear in notifications

Russian localization included.

How to install?

1. Install *.xml file via Admin Control Panel (Product management)

Files description:
  • product-fr_notifymoditems.xml - main product XML. English localization included.
  • vbulletin-language-ru.xml - russian localization. Import as a language overwritting russian.

Version history:
Code:

06-11-2014)
  • Attached a version by AUGI Web Team that fixes notification count for moderators with limited permissions.


11-05-2011)
  • Attached a version by A825F933D42B with attachments moderation support.


4.02 (28-04-2010)
  • Non-working option to show zero values removed due to 4.x incompatibility

  • Russian translation fixed


4.01 (28-04-2010)
  • Critical bug fixed that prevented notifications from being displayed

  • Forums with custom admincp and modcp paths are now supported.


4.0 (26-04-2010)
  • VBulletin 4.x release


1.1.3 (07-08-2008)
  • VBDynamics (and several other addons) compatibility ensured (aproape)

  • Non-standard admincp and modcp directories are now respected (aproape)


1.1.2 (07-08-2008)
  • Links bug fixed in new features


1.1.1 (07-08-2008)
  • Path bug fixed.


1.1 (06-08-2008)
  • Added moderation items for calendar events, users and album pictures. Each item requires one (but very quick) additional query

  • Added an option to show/hide empty notifications (with 0 items).

  • Added an option to show only selected notifications



ZexTasy 04-26-2010 01:54 PM

This is very interesting, thanks! Tagged for later!

ProFifaLeagues 04-26-2010 01:57 PM

Tagged looks handy for my forum will install tonight!!

Adem GEN? 04-26-2010 02:19 PM

1 Attachment(s)
No menu
Attachment 116339

synseal 04-26-2010 04:39 PM

Quote:

Originally Posted by AdemGEN? (Post 2027629)

Same for me, just shows the number 8 and when you click on it theres nothing to do.

FractalizeR 04-27-2010 12:24 PM

Can you post screenshots of the problem please?

grc 04-27-2010 03:21 PM

1 Attachment(s)
We use moderator approved registrations and I basically am only interested having administrators see users awaiting registration approval in the notifications area. I installed the mod, but I can't tell that it's doing anything. As I understand it, I should be seeing the checked items listed, with or without pending action.

Any ideas?

SuperGLS 04-27-2010 03:56 PM

Any screenshots of the vB4.X version?

Fungsten 04-27-2010 06:11 PM

Quote:

Originally Posted by grc (Post 2028154)
We use moderator approved registrations and I basically am only interested having administrators see users awaiting registration approval in the notifications area. I installed the mod, but I can't tell that it's doing anything. As I understand it, I should be seeing the checked items listed, with or without pending action.

Any ideas?

Same here.

Sador 04-27-2010 10:13 PM

Tagged, seems very useful.

grc 04-28-2010 12:31 AM

I see last update: today and then "Not Supported." I take it that the coder released this version and saw some of the problems and decided not to put any more time into it.

Is that correct?

FractalizeR 04-28-2010 06:23 AM

No, that is not. On my forum mod works ok. Now I am looking into problem with user moderation not being displayed.

Quote:

As I understand it, I should be seeing the checked items listed, with or without pending action.
No. If there is nothing in your moderation queue, empty item is not displayed in menu. Do you have unmoderated users right now?

FractalizeR 04-28-2010 07:01 AM

All bugs fixed. Please update to latest version. Screenshot update is on the way

FractalizeR 04-28-2010 07:03 AM

Screenshots updated. Modification settings fixed. Now it is showing as Supported.

Adem GEN? 04-28-2010 09:51 AM

Quote:

Originally Posted by AdemGEN? (Post 2027629)

Now no problem
Thank you, very nice mod

Turkish language files here

grc 04-28-2010 11:52 AM

Quote:

Originally Posted by FractalizeR (Post 2028433)
No. If there is nothing in your moderation queue, empty item is not displayed in menu. Do you have unmoderated users right now?

Thanks for the response. I've updated to the current release and reactived the mod. I'm only going to use it for notifications of new registrations, so I'll have to wait for someone new to come along (we get a few a day).

The reason I was under the impression that, if activated, I'd see information listed under "Notifications" with our without items to moderate is because of the wording in the options:
Show notification even if count is zero
Text will be shown in notifications area even if there is nothing to notificate about (0)
I see that as saying that there will be information under notifications even if there is nothing pending. Please understand, I'm okay with it either way, just that I had that impression based on that option.

Also, I'll mention that I'm rather sensitive to "supported" or "not supported" right now because of the way the coder of the "Thanks" mod has just discontinued support leaving many users with a mod missing several features that weren't upgraded for vB4.

Thanks for your support of your nice mod!

FractalizeR 04-28-2010 12:02 PM

Yea, Abe1 disappointed me as well. I am slowly switching to Helpful answers mod instead because of that.

I will check how options affect mod behaviour, thanks for bug report. Stay tuned.

FractalizeR 04-28-2010 12:08 PM

Quote:

I see that as saying that there will be information under notifications even if there is nothing pending. Please understand, I'm okay with it either way, just that I had that impression based on that option.
I've searched VBulletin code and it seems, VBulletin now hides notifications with 0 items count itself:
PHP Code:

if ($vbulletin->userinfo["$userfield"] > 0)
{
    
$show['notifications'] = true;
    
$notifications_total += $vbulletin->userinfo["$userfield"];
    
$notification['total'] = vb_number_format($vbulletin->userinfo["$userfield"]);
    
$templater vB_Template::create('navbar_notifications_menubit');
    
$templater->register('notification'$notification);
    
$notifications_menubits .= $templater->render();


It seems, that I should remove that option from plugin.

FractalizeR 04-28-2010 12:16 PM

Ok, non-working option removed. Russian translation fixed.

Please don't forget to click Installed if you installed my mod.

grc 04-28-2010 01:38 PM

Quote:

Originally Posted by FractalizeR (Post 2028519)
Yea, Abe1 disappointed me as well. I am slowly switching to Helpful answers mod instead because of that.

I will check how options affect mod behaviour, thanks for bug report. Stay tuned.

Let me report back that your mod is working fine for me. The only thing moderated on our forum is registration so I had to wait till a couple of new ones came in to know for sure, but the notification worked just fine. Thanks!

An aside, how hard do you think it would be to get search capability going on the Thanks mod? Since it was working before the upgrade to vB4, I'd think (easy for me, a non coder to say) it wouldn't be that hard to get to working.

chriske 04-28-2010 03:00 PM

Thanks for this mod, thats excatly what i need!

installed & rated

wampforum 04-28-2010 05:36 PM

installed thanks. any way this can notify of articles awaiting moderation?

FractalizeR 04-29-2010 08:08 AM

Quote:

Originally Posted by wampforum (Post 2028652)
installed thanks. any way this can notify of articles awaiting moderation?

I didn't use CMS yet. I will have a look, but a little later.

Quote:

Originally Posted by grc
An aside, how hard do you think it would be to get search capability going on the Thanks mod? Since it was working before the upgrade to vB4, I'd think (easy for me, a non coder to say) it wouldn't be that hard to get to working.

I am not sure, I will try to have a look. It looks a bit complex for me. But it seems, that forum rules prohibit to rerelease modifications... :( May be I can try to release a patch.

RedDevil 05-01-2010 08:03 AM

I installed this now its putting posts in moderation from my rss feeds which it wasnt happening before so ive temp disabled it now posts normal, any idea what this is?

FractalizeR 05-02-2010 12:14 PM

This mod doesn't change database structure at all. It just reads it to determine the items, waiting for moderation. So, it can't put anything to moderation queue itself.

Skyrider 05-03-2010 08:00 AM

That's weird. It says in my notifications that 3 threads are awaiting moderation. But when I click it, no threads are showing up. And when I check the AdminCP it says:

Quote:

Threads to Moderate - 0

Julie 05-03-2010 10:48 AM

Mine says I have two threads waiting, but there are no threads awaiting moderation...

FractalizeR 05-03-2010 04:03 PM

Thanks for reporting, I will check.

Brandon Sheley 05-03-2010 04:05 PM

nice mod, very helpful
will bookmark this for my 4.0 installs :)

FractalizeR 05-03-2010 04:10 PM

Can these posts be deleted before you had a chance to look into them?

Skyrider 05-04-2010 05:40 PM

Quote:

Originally Posted by FractalizeR (Post 2031189)
Can these posts be deleted before you had a chance to look into them?

Come again? I have no idea what posts needs to be accepted. I have no idea why it even says I need to accept 3 of them.

FractalizeR 05-05-2010 06:30 AM

I mean, when you move from main forum page (where you see 3 threads to moderate) to admincp (where this number shown is zero) and then back, do you see again 3 posts in moderation queue?

Skyrider 05-05-2010 07:55 AM

1 Attachment(s)
Quote:

Originally Posted by FractalizeR (Post 2031975)
I mean, when you move from main forum page (where you see 3 threads to moderate) to admincp (where this number shown is zero) and then back, do you see again 3 posts in moderation queue?

Here you go:

At the Forums:
https://vborg.vbsupport.ru/attachmen...1&d=1273049715

When I click on it:
https://vborg.vbsupport.ru/attachmen...1&d=1273049807

In the AdminCP:
https://vborg.vbsupport.ru/attachmen...1&d=1273049715

https://vborg.vbsupport.ru/attachmen...1&d=1273049884

And yes, I still see it even I go to the moderation view of all threads in the AdminCP back to the refreshment on the forum homepage.

FractalizeR 05-06-2010 02:01 PM

Thanks, I will look. I noticed that admincp queries are almost like mine....

Skyrider 05-10-2010 09:27 PM

Any updates regarding this? :)

grc 05-11-2010 03:13 PM

FractalizeR, I just wanted to tell you how much I'm enjoying having your mod on my forum. I only activated the "new registration" part of the mod, as we manually approve all registrations, but don't do any moderation of posts.

I used to get emails on new registrations, but would be busy and forget about them. Now, everything I go to the forum, it's there in Notifications.

I have another member of the team who has helped with registrations and I see that he's handling more of them than before. I think it's because of the Notifications of new registrations.

Thanks again for the good work.

Reeve of shinra 07-21-2010 06:54 PM

I am actually having the same issues as FF|Skyrider, has there been any determinations for what causes this?

RobDog888 07-22-2010 08:15 AM

1 Attachment(s)
Great mod, just what I was looking for but... Installed on 4.0.5 and I dont have the zero option in the admincp and seems I get a duplicate notification during my testing.

I unapproved one of my existing profile visitor messages and it added "Visitor messages awaiting moderation" as well as "Unapproved Visitor Messages". The second one is the vB system one as you can tell by the phrase text is all proper case vs yours with all lowercase except the very first letter in the message.

Edit: when I approve the visitor message, both notifications go away.

Edit2: Can you add Attachment moderation also? I added it myself but others may like it too :)

MonsterDK 09-16-2010 04:52 PM

Be great if this was updated as I take it, it will not work on 4.0.6

FractalizeR 09-17-2010 07:41 AM

I will try to discover and fix recovered issues soon, but I am pretty much disappointed with VB 4.x and I am going to stop developing for it. Waiting for XenForo to switch my forums to it. I am tired of struggling with VB.


All times are GMT. The time now is 06:27 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.01497 seconds
  • Memory Usage 1,839KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete