The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to find the forum ids that a user can see
As per title really, I am trying to get all the forum ids that the current user is allowed to see?
|
#2
|
|||
|
|||
check your permissions for each user group. take note of which user group has access to which forum. then, go to forum manager> select the forum of the id you want to get by hitting go> at the top you will see "Forum: General (id: 4)" for example you will see a different id for each forum... take note because that number is that forums id...and go down the list..i think thats what your looking for?.
But you will have to manually put in the work and figure out the forum id by hand for each one.. why you need this i dont know.. |
#3
|
|||
|
|||
I should have been more explicit, I need to get this in code for a mod I am playing around with.
|
#4
|
|||
|
|||
well i showed you..
|
#5
|
||||
|
||||
The forum chooser only shows forums the user is allowed to view (but doesn't show forums the admin says shouldn't be shown in the chooser). So, take a look at the function construct_forum_chooser
|
#6
|
|||
|
|||
In the end I went with this:
Code:
foreach ($vbulletin->forumcache as &$forum) { $forumperms =& $vbulletin->userinfo['forumpermissions'][$forum['forumid']]; if (forum_accessible($forum, $forumperms)) { $forumids[] = $forum['forumid']; } } function forum_accessible($forum, $forumperms) { global $vbulletin; if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canview'])) return false; if (!($forum['options'] & $vbulletin->bf_misc_forumoptions['active'])) return false; if (!verify_forum_password($forum['forumid'], $forum['password'], false)) return false; if (trim($forum['link'])) return false; if ($forum['displayorder'] == 0) return false; return true; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|