You mean, get a list of forums for the second form i made?
that gives a list of all the people who have access masks listed?
Tweezy stuff there!
Something along the lines of>
PHP Code:
function getchildren($parentid=-1)
{ global $DB_site, $bbuserinfo;
$childquery = "SELECT title,forumid,styleid,parentid ";
$childquery .= "FROM forum ";
$childquery .= "WHERE parentid=$parentid ";
$childquery .= "ORDER BY displayorder";
$childtemp=$DB_site->query($childquery);
print("<ul>");
while ($children=$DB_site->fetch_array($childtemp)) {
$accesscheckquery="SELECT * FROM moderator WHERE userid=$bbuserinfo[userid] AND forumid=$children[forumid]";
$accesstemp=$DB_site->query($accesscheckquery);
while($accesscheck=$DB_site->fetch_array($accesstemp)) {
$modcheck[$accesscheck[forumid]]=$accesscheck;
}
if($modcheck[$children[forumid]][caneditstyles]>=1){ $colour="red"; } else { $colour="blue"; }
$canedit=$modcheck[$children[forumid]][caneditstyles];
print("<li><font style=\"color:$colour\">$children[forumid]-$children[title], $children[parentid]--$canedit</font></li>");
getchildren($children[forumid]);
}
print("</ul>");
}
I wrote this, to get a list, and if they have caneditstyles=1, show it in red, else blue.
Just adapt the 'while' loop to check to see if they have moderator and the forum is caneditaccess=1
Shouldnt be too hard