vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Remove users ability to remove private messages (https://vborg.vbsupport.ru/showthread.php?t=316008)

Skyrider 12-13-2014 04:32 PM

Remove users ability to remove private messages
 
Anyone happens to know if this one exists? If not, would someone fancy creating one?

Dave 12-13-2014 04:39 PM

private_managepm_start hook:

PHP Code:

if($vbulletin->GPC['dowhat'] == 'delete'){
  
$vbulletin->GPC['dowhat'] = 'nothing';


Untested, but should do the trick. Will prevent everyone from deleting PM's.

Skyrider 12-13-2014 06:03 PM

Awesome, appears to be working with a message:

Quote:

Invalid Action specified. If you followed a valid link, please notify the administrator
Any idea how to include this code to specific usergroups? And perhaps a custom text? <3 Really appreciate it btw!

ForceHSS 12-13-2014 06:46 PM

So when a user gets to their max allowed pms and can't delete any what are you going to do did you ever think about that problem

Dave 12-13-2014 06:57 PM

The array is an array of usergroupid's which are allowed to delete PM's.

Code:

if($vbulletin->GPC['dowhat'] == 'delete' && !in_array($vbulletin->userinfo['usergroupid'], array(6))){
  eval(standard_error('You may not delete private messages. <a href="private.php">Return</a>'));
}


Skyrider 12-13-2014 06:59 PM

Quote:

Originally Posted by ForceHSS (Post 2527106)
So when a user gets to their max allowed pms and can't delete any what are you going to do did you ever think about that problem

I highly doubt that'll be a problem with tons of PM space.

Quote:

Originally Posted by Dave (Post 2527108)
The array is an array of usergroupid's which are allowed to delete PM's.

Code:

if($vbulletin->GPC['dowhat'] == 'delete' && !in_array($vbulletin->userinfo['usergroupid'], array(6))){
  eval(standard_error('You may not delete private messages. <a href="private.php">Return</a>'));
}


Appears to be working perfectly, thanks!

ForceHSS 12-13-2014 07:24 PM

Quote:

Originally Posted by Skyrider (Post 2527109)
I highly doubt that'll be a problem with tons of PM space.


Appears to be working perfectly, thanks!

Even if you allow each member 1000's it will one day fill up and if it takes years by then you will forget that you added this code. You would be best to fix the code now for that problem in the future

Skyrider 12-15-2014 09:13 AM

Quote:

Originally Posted by ForceHSS (Post 2527110)
Even if you allow each member 1000's it will one day fill up and if it takes years by then you will forget that you added this code. You would be best to fix the code now for that problem in the future

The thing is that the banned users can't send private messages either way, but they were able to remove them due to our changes in the banned usergroup(s). So this code fits perfectly with what we actually want ;).

squidsk 12-15-2014 01:58 PM

Just because they can't send them doesn't mean they can't receive them, either way one day their inbox will fill up.


All times are GMT. The time now is 01:40 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.01077 seconds
  • Memory Usage 1,732KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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