Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
United-Forum report via private message Details »»
United-Forum report via private message
Version: 1.0.1, by Mooff Mooff is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Category: Moderators Functions - Version: 4.x.x Rating:
Released: 07-29-2011 Last Update: 07-29-2011 Installs: 24
Uses Plugins
Translations  
No support by the author.

A very easy to install and straight forward modification which enables the private message system for reports.

install
- import product
- done

features
- sends pms to all affected moderators
- given there are no moderators in the parentforum/article the pms are send to admins instead
- also works for cms
- no support for blogs

language support
- german/ english currently
- language is hardcoded and that won't change
- adding a new language product file is easy, just edit this part to your needs:
Code:
		//language blob
		$titel_text = 'Post reported by ';
		$auto_report = 'Automated private message via report system.';
		$url_text = 'reported post';
		$mods_text = 'moderators: ';
		$reason_text = 'reason: ';
		$content_text = 'post content:';
(if someone wants to improve my english in there, feel free to do so)
- please share your translations in this thread.

support
- we are using it in our live board, so yes, it will be supported.


additional languages
persian version by LOGECT
brasilian version by DonosOdD

Download Now

File Type: xml product-uf_report_via_pm_deutsch_v101.xml (3.8 KB, 20 views)
File Type: xml product-uf_report_via_pm_english_v101.xml (3.8 KB, 95 views)

Screenshots

File Type: jpg uf_pm_report.jpg (77.0 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
LOGECT

Comments
  #12  
Old 07-30-2011, 03:24 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Doesn't seem to work, checked the private messages of the assigned moderators but he never received any private message what so ever.
Reply With Quote
  #13  
Old 07-30-2011, 03:30 PM
Mooff Mooff is offline
 
Join Date: Mar 2010
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Damn missed that one. I do not get this warning on my board (though i know where the problem lies, error message is pretty clear). Can you check for me if the warning goes away when we use an empty permission string?
old:
Code:
			
	$vB_DataManager_PM->set_recipients($modlist);
new:
Code:
			
        $permissions = array();
	$vB_DataManager_PM->set_recipients($modlist, $permissions);
If not, i'm gonna need some time to find out how exactly i have to design that permission thing.


@FF|Skyrider
Did you report a post or an article comment?
This mod does not work for blogs, pms ...
Reply With Quote
  #14  
Old 07-30-2011, 03:39 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mooff, I simply reported a post / thread.
Reply With Quote
  #15  
Old 07-30-2011, 03:44 PM
LOGECT's Avatar
LOGECT LOGECT is offline
 
Join Date: Jun 2010
Location: Copenhagen
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mooff View Post
Damn missed that one. I do not get this warning on my board (though i know where the problem lies, error message is pretty clear). Can you check for me if the warning goes away when we use an empty permission string?
old:
Code:
			
	$vB_DataManager_PM->set_recipients($modlist);
new:
Code:
			
        $permissions = array();
	$vB_DataManager_PM->set_recipients($modlist, $permissions);
If not, i'm gonna need some time to find out how exactly i have to design that permission thing.
Thanks for your support, that solved the problem, but i will no longer see the redirect page after submitting a report.
Reply With Quote
  #16  
Old 07-30-2011, 06:25 PM
Mooff Mooff is offline
 
Join Date: Mar 2010
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the feedback. Edited that part in and updated the files - no version change though - minor bug.

As for the redirect page, last line of the report.php
Code:
        eval(print_standard_redirect('redirect_reportthanks'));
}
does that. This should not be affected by my addon at all.

Btw. on our board i neither see the redirect page regardless of having the addon actived nor deactived.


@FF|Skyrider
I'm totally lost here. Please try to reinstall the addon or try to report a post in a forum where no moderator will be affected, only you (and the other admins) and check if that does work.
Reply With Quote
  #17  
Old 07-30-2011, 10:50 PM
johnrizz's Avatar
johnrizz johnrizz is offline
 
Join Date: Apr 2006
Posts: 333
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

work good !
Reply With Quote
  #18  
Old 09-06-2011, 12:27 PM
DonosOdD DonosOdD is offline
 
Join Date: Mar 2011
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*clicking install button*

Thank you very much. You have no idea on how much I needed this!

EDIT: Adding a Brazilian Portuguese translation for this.
Attached Files
File Type: xml product-uf_report_via_pm_pt-br_v101.xml (3.8 KB, 5 views)
Reply With Quote
Благодарность от:
Mooff
  #19  
Old 09-06-2011, 01:17 PM
Mooff Mooff is offline
 
Join Date: Mar 2010
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks DonosOdD.

Language added in the first post.
Reply With Quote
  #20  
Old 09-17-2011, 05:20 PM
sbelle731 sbelle731 is offline
 
Join Date: Jun 2011
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great Mod...Thank you!

Is there a way to send a notification to all mods when someone reports a private message?
Reply With Quote
  #21  
Old 11-28-2011, 09:14 PM
xabo xabo is offline
 
Join Date: Apr 2010
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Realy nice, thanks!

Made a norwegian translation.
Attached Files
File Type: xml product-uf_report_via_pm_norwegian_v101.xml (3.8 KB, 4 views)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:47 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04583 seconds
  • Memory Usage 2,347KB
  • Queries Executed 28 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (2)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete