Log in

View Full Version : Can i use if conditional in vb files?


basketmen
08-27-2010, 10:12 PM
guys can i use this if conditional in vb files, for example in forumdisplay.php or showthread.php ?


if (is_member_of($vbulletin->userinfo, 2, 5, 6, 7))
stuff
}




i need to do some custom hack, there is code need to inserted to vb files and to the templates, but i just want to showing this hack to some usergroups like above


please share your knowledge guys, is this if conditional works for vb files?

BirdOPrey5
08-27-2010, 10:23 PM
I don't know off hand if that specific condition works but yes you can use conditionals. You can use any php you want.

Also in your example, if it was to work, you forgot the opening brace, the "{" before "stuff."

Edit- looks like it should work, but you might need to make an array out of the usergroup id's list=
I copied this line from a working mod php:
if (is_member_of($vbulletin->userinfo, $ugroups))

I believe $ugroups is an array so you'll need to do:
array{2, 5, 6, 7)
I believe...