PDA

View Full Version : IF user can moderate here


alexgeek
01-17-2008, 09:53 PM
I know that I can use can_moderate() to find out if a user can moderate at all but how I can I check if they can moderate in forum x?
Would be great if there is something like:

can_moderate_in(FORUMID, USERID);


--------------- Added 1200676644 at 1200676644 ---------------

Sorry for the bump but I really need this for an awesome mod ;)

alexgeek
01-20-2008, 10:00 PM
Bump?

ZomgStuff
01-21-2008, 03:31 AM
can_moderate($forumid = 0, $do = '', $userid = -1, $usergroupids = '');

$forumid int Specific forum to check. If not set, will check whether the user is a moderator of any forum at all.
$do string Specific mod action to check. If not set, will check whether the user is a moderator of the forum specified in $forumid.
$userid int User ID to check. If not set, will use $vbulletin->userinfo.
$usergroupids string List of group IDs, separate by commas, to which the user belongs. Should be generally left blank.

alexgeek
01-21-2008, 03:41 PM
It has overloads right? So this will work?

can_moderate($fid, '', 1);

Opserty
01-21-2008, 03:53 PM
Overloads? No.

If you want to check more then 1 forum you'll have to repeat the function call for each one.

alexgeek
01-21-2008, 09:06 PM
Okay thanks just one more thing.
What can I put in $do? Is there a list of things you can provide?
e.g. how would I check if the user can open threads?

ZomgStuff
01-21-2008, 11:09 PM
Okay thanks just one more thing.
What can I put in $do? Is there a list of things you can provide?
e.g. how would I check if the user can open threads?

You should probably use bitfields permissions.

You can read up on them here: https://vborg.vbsupport.ru/showthread.php?t=166940

alexgeek
01-22-2008, 03:06 PM
Thanks, I've checked that out.

Opserty
01-22-2008, 04:00 PM
Theres a "list" so to speak in '/includes/xml/bitfields_vbulletin.xml'

They'll be listed under "ugp" > "forumpermissions" and "misc" > "moderatorpermissions".

You'll be interested in the name attribute.

alexgeek
01-22-2008, 04:25 PM
Thanks very much!