View Single Post
  #2  
Old 10-20-2002, 10:52 AM
tHE DSS's Avatar
tHE DSS tHE DSS is offline
 
Join Date: Jun 2002
Location: UK
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm back again to share some more. Sombody wanted a list of forums that a user can view, based on their usergroup permissions.

I'm doing exactly the same thing at our site, but, i'm outputting formatted links. The request was for a dropdown box... so, here is the gumph for a DD box.

Again, here is the function... you can place this in your 'functions.php' or 'global.php' if you wish :

PHP Code:
function getForumPermissions($usergroupID) {
    global 
$DB_forum;
    
$forumsCannotView_strList "";
    
$forumCatPerm_result $DB_forum->query("SELECT forumid FROM forumpermission WHERE canview=0 AND usergroupid=$usergroupID");
    if (!
$num_rows $DB_forum->num_rows($forumCatPerm_result) <=0) {
        
$arrayIndex 0;
        while (
$row $DB_forum->fetch_array($forumCatPerm_result$DB_content->ASSOC)) {
            
$forumCatPerm_array[$arrayIndex++] = $row[forumid];
        }
        
$forumsCannotView_strList .= implode(","$forumCatPerm_array) . ",";
        if (isset(
$forumCatPerm_array)) {
            
$forumsCannotView_result $DB_forum->query("SELECT forumid,parentlist FROM forum WHERE active=1");
            if (!
$num_rows $DB_forum->num_rows($forumsCannotView_result) <=0) {
                
$arrayIndex 0;
                while (
$row $DB_forum->fetch_array($forumsCannotView_result$DB_content->ASSOC)) {
                    
$forumParentList_temp explode(','$row[parentlist]);
                    if (
$forumParentList_temp[1] != -1) {
                        if (
in_array($forumParentList_temp[1], $forumCatPerm_array)) {
                            
$forumsCannotView_array[$arrayIndex++] = $forumParentList_temp[0];
                        }
                    }
                }
                
$forumsCannotView_strList .= implode(","$forumsCannotView_array);
            }
        }
    }
    return 
$forumsCannotView_strList;

In a page where you want to list forums a user can view, call the function to get a string list, and then setup the variable WHERE clause, like this :

PHP Code:
$forumsCannotView_strList getForumPermissions($bbuserinfo[usergroupid]);
$whereClause_permissions = ($forumsCannotView_strList != "") ? ("(forumid NOT IN ($forumsCannotView_strList)) AND") : (""); 
Then, fill a multi-dimensional array with all the details of each viewable forum :

PHP Code:
$mainLinks_result $DB_forum->query("SELECT forumid,title,description,parentlist FROM forum WHERE $whereClause_permissions active=1 ORDER BY parentid,displayorder ASC");
if (!
$num_rows $DB_forum->num_rows($mainLinks_result) <=0) {

    
// ####### Main Links Multi Dimensional Array Layout #######
    // this commented out code is just the a visible structure of the multi-array that is used in the actual code following. ;-)
    /*
    $mainLinks_multiArray = array(array(     "catID"  => ""
                    ,"catTitle" => ""
                    ,"forums_array" => array(array(     "forumID" => ""
                                    ,"forumTitle" => ""
                                    ,"description" => ""))));
    */
    // ####### end of Main Links Multi Dimensional Array Layout #######

    
while ($row $DB_forum->fetch_array($mainLinks_resultMYSQL_ASSOC)) {
        
$forumParentList_temp explode(','$row[parentlist]);
        
$thisCatKey $forumParentList_temp[1];
        
$thisForumID $forumParentList_temp[0];
        if (
$thisCatKey == "-1") {
            
$mainLinks_multiArray[$thisForumID][catID] = $thisForumID;
            
$mainLinks_multiArray[$thisForumID][catTitle] = $row[title];
        } else {
            
$mainLinks_multiArray[$thisCatKey][forums_array][$thisForumID][forumID] = $thisForumID;
            
$mainLinks_multiArray[$thisCatKey][forums_array][$thisForumID][forumTitle] = $row[title];
        }
    }
    
$forumLinksStatus 1;
}
// null the main links, to start from fresh
$mainLinks ""
... if you wish, you can make that into a function, and also place that into your 'functions.php' or 'global.php'. If so, don't forget to describe the global variables.... especially the 'global $DB_site;'.

Then using all the collected data, you can create a drop down box, with this :

PHP Code:
$mainLinks .= "<select name=\"viewable_forums\">";

foreach (
$mainLinks_multiArray as $key => $value) {
    
$title $mainLinks_multiArray[$key][catTitle];
    
$mainLinks .= "<option value=\"null\">$title</option>";
    foreach (
$mainLinks_multiArray[$key][forums_array] as $key2 => $value2) {
        
$forumID $mainLinks_multiArray[$key][forums_array][$key2][forumID];
        
$title $mainLinks_multiArray[$key][forums_array][$key2][forumTitle];
        
$mainLinks .= "<option value=\"$forumID\"> --- $title</option>";
    }
}

$mainLinks .= "</select>"
You then have the HTML code for a drop down box, stored inside the variable '$mainLinks', which you can use inside any of your templates.

Do remember that this does not support permissions where Access Masks are used. I reckon the majority of boards don't use Access Masks anyway.

Also, i'm using a multi database connection system on our site, where this thing is used, and I have changed the SQL object to a different name.

Just replace all occurances of '$DB_forum' with '$DB_site', and you'll be ok.

Hope it helps you, and I hope you can get it working.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02065 seconds
  • Memory Usage 1,849KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete