I've got a custom page on Mybb from this Tut: Include your custom pages in Mybb Like vB you can restrict a page to certain usergroups but whats the code for MyBB? I've searched Google and Mybboard, I posted here because there wasn't really anywhere on the MyBB forums to post. Thanks
Try: PHP: if ( $mybb->user['usergroup'] == 'usergroup id here' ){// code here}else{die ( 'You can\'t access this page!' );}
Works, Would you know how to do it for 2 Usergroups? The ID's are 4 and 8, Ive tried putting the code twice (if ( $mybb->user['usergroup'] == 'usergroup id here' ) ), using commas and '4', '8' but nothing seems to work.
PHP: $allowedgroups = array ( '4', '8' );if ( in_array ( $mybb->user['usergroup'], $allowedgroups ){// code here}else{die ( 'Uh oh, accessing stuff you\'re not supposed too. ;)' );}