vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Limit Delete for Super Moderators (https://vborg.vbsupport.ru/showthread.php?t=71438)

Ryuujin 11-06-2004 08:59 PM

Limit Delete for Super Moderators
 
Hello:

I was wondering, how can I set the permisions so SUPER MODERATORS are NOT allowed to PERMENATLY DELETE thread and posts (Soft Delete, yes. Permanent Delete, no.)

vprp 11-06-2004 10:11 PM

I am also extremely interested in this.

Ryuujin 11-08-2004 12:29 AM

Bump!

Link14716 11-08-2004 12:39 AM

postings.php:
Find:
PHP Code:

$show['harddelete'] = iif(can_moderate($threadinfo['forumid'], 'canremoveposts'), truefalse); 

Replace with:
PHP Code:

$show['harddelete'] = iif(can_moderate($threadinfo['forumid'], 'canremoveposts') && $bbuserinfo['usergroupid'] != 5truefalse); 

Find:
PHP Code:

    if (!can_moderate($threadinfo['forumid'], 'canremoveposts'))
    {
        
$type 0

Replace with:
PHP Code:

    if (!can_moderate($threadinfo['forumid'], 'canremoveposts') || $bbuserinfo['usergroupid'] == 5)
    {
        
$type 0

Suprised this isn't a default feature.

vprp 11-09-2004 07:36 PM

Thank you very much! I will try this now.

jojo77 07-05-2005 05:40 AM

This only prevents them from deleting threads permanently but not individual posts. Got a hack for that part?

jojo77 07-08-2005 04:22 PM

bump

Andreas 07-08-2005 08:17 PM

I think I've answered this (or requests for other Permissions) several times already ...
In functions.php
FIND
PHP Code:

if ($userid == $bbuserinfo['userid'])
{
    if (
$bbuserinfo['permissions']['adminpermissions'] & ISMODERATOR)
    {
        
DEVDEBUG('  USER IS A SUPER MODERATOR');
        return 
1;    
    }


REPLACE that with
PHP Code:

if ($userid == $bbuserinfo['userid'])
{
    if (
$bbuserinfo['permissions']['adminpermissions'] & ISMODERATOR)
    {
        
DEVDEBUG('  USER IS A SUPER MODERATOR');
        if (
$do != 'canremoveposts')
        {
            return 
1;
        }
        else
        {
            return 
0;
        }    
    }


@Link14716
Your suggestion doesn't really work, as Supermods can be any Usergroup.

Rubal 11-22-2005 10:32 AM

How this is possible with vB 3.5.1 ( Supermods to Just allow SoftDelete and not physical delete )

Thanks


All times are GMT. The time now is 03:18 AM.

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.01110 seconds
  • Memory Usage 1,735KB
  • 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
  • (6)bbcode_php_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