View Full Version : Plugin help
ludachris
10-04-2012, 04:21 AM
I have the Edit Time Limit setting turned on but have an exemption set so that not all usergroups have to deal with it. Here's the code:
if (is_member_of($vbulletin->userinfo, 5, 6, 7, 10, 11, 109))
{
$vbulletin->options['edittimelimit'] = '0';
}
Can someone help me modify it so specific forum IDs are exempt as well?
You could do this:
if (is_member_of($vbulletin->userinfo, 5, 6, 7, 10, 11, 109) OR in_array($GLOBALS[forumid], array(1, 2, 3)))
{
$vbulletin->options['edittimelimit'] = '0';
}
This will change the edit limit for everyone in forums 1, 2, and 3. If you wanted the limit changed only for certain usergroups in certain forums, then you'd change OR to AND.
ludachris
10-04-2012, 01:45 PM
I get syntax errors up at the top of the page when I use that code. Maybe I should have mentioned this is for 3.8?
I don't think the version is the issue. But which hook are you using?
Edit: actually I think I was just missing a closing paren, which I've now added to the code above. Sorry about that.
ludachris
10-04-2012, 02:35 PM
fetch_foruminfo
Should I change that?
I'm not sure offhand. If it's worked for you so far then it's probably OK. But just in case you missed my edit above, I think the problem was a missing closing paren.
ludachris
10-04-2012, 03:49 PM
Yeah, that looked like the issue. Thanks for that, I probably could have looked closer and saw that myself. Much appreciated.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.