PDA

View Full Version : Disallow ALL moderation in archive subforum?


James T Brock
09-21-2011, 07:05 PM
I have an archive forum where I do NOT want anyone, including other admins and global mods to have the ability to moderate. How do I do this?

This is the relevant code in editpost.php

if (!$postinfo['postid'] OR $postinfo['isdeleted'] OR (!$postinfo['visible'] AND !can_moderate($threadinfo['forumid'], 'canmoderateposts')))

What do I add there so that if the forumid is 20 no one will be able to edit/delete a post in that specific forum even if they're admins or global mods?

--------------- Added 1316706032 at 1316706032 ---------------

No one knows how to do this? Seems like it should be relatively simple for a coder. I just need to know what php code would be the equivalent of "AND is not forumid=xx" and add that right before the canmoderateposts part. That way if all of those conditions are present AND it's NOT that forumid then they can moderate, otherwise they can't.

OR does anyone have an alternate suggestion for what to add as a conditional in the postbit template?

kh99
09-25-2011, 01:27 PM
You could do this:

if ( !$postinfo['postid'] OR $postinfo['isdeleted'] OR
(!$postinfo['visible'] AND !can_moderate($threadinfo['forumid'], 'canmoderateposts')) OR
$threadinfo['forumid'] == 20
)


I haven't looked at the code, I'm just going by what you posted.


The above would make it so no one could moderate it at all. If you want to be able to moderate it yourself, you could add this:

if ( !$postinfo['postid'] OR $postinfo['isdeleted'] OR
(!$postinfo['visible'] AND !can_moderate($threadinfo['forumid'], 'canmoderateposts')) OR
($threadinfo['forumid'] == 20 && $vbulletin->userinfo['userid'] != X)
)


where you'd replace X with your userid.

James T Brock
10-03-2011, 06:14 PM
Hi, thanks for your reply! I don't know what I was thinking, that's not the right page at all.

The correct page is class_postbit.php and the relevant code is:

// hide edit button if they can't use it
$forumperms = fetch_permissions($this->thread['forumid']);
if (
!$this->thread['isdeleted'] AND !$this->post['isdeleted'] AND (
can_moderate($this->thread['forumid'], 'caneditposts') OR
can_moderate($this->thread['forumid'], 'candeleteposts') OR
(
$this->thread['open'] AND
$this->post['userid'] == $this->registry->userinfo['userid'] AND
($forumperms & $this->registry->bf_ugp_forumpermissions['caneditpost']) AND
( $this->post['dateline'] >= (TIMENOW - ($this->registry->options['edittimelimit'] * 60)) OR
$this->registry->options['edittimelimit'] == 0
)
))
)

Also shouldn't that be AND instead of OR? And I can't figure out how to insert the "AND $threadinfo['forumid'] == 20" part, it does what I want but the code doesn't seem to be in the right syntax. Any help would be appreciated.



edit: I think I figured it out!

AND $this->thread['forumid'] != XXX

Can't get the userid thing to work though.