Quote:
Originally Posted by noypiscripter
A PHP module could be created and be placed in the forum page. There seems to be no API to fetch the moderators given a forum nodeid. But in the PHP module you could do an SQL query to moderator table.
"SELECT userid from " . TABLE_PREFIX . "moderator WHERE nodeid=<forum nodeid>" ;
where <forum nodeid> can be retrieved by calling getRoute method from route API passing the URL of the forum.
Then upon getting all the userids of the moderators, you call the fetchProfileInfo method from user API to get info for each user.
I would post here when I get a chance to do the whole code for this.
|
could the desired info not be pulled from this section in the
./core/packages/vbforum/db/mysql/querydefs.php
Code:
'usergroup' => array('key' => 'usergroupid', 'structure' =>array('usergroupid',
'usergroupid', 'title', 'description', 'usertitle', 'passwordexpires', 'passwordhistory', 'pmquota', 'pmsendmax', 'opentag', 'closetag',
'canoverride', 'ispublicgroup', 'forumpermissions', 'pmpermissions', 'calendarpermissions', 'wolpermissions', 'adminpermissions',
'genericpermissions', 'genericpermissions2', 'genericoptions', 'signaturepermissions', 'visitormessagepermissions', 'attachlimit',
'avatarmaxwidth', 'avatarmaxheight', 'avatarmaxsize', 'profilepicmaxwidth', 'profilepicmaxheight', 'profilepicmaxsize', 'sigpicmaxwidth',
'sigpicmaxheight', 'sigpicmaxsize', 'sigmaximages', 'sigmaxsizebbcode', 'sigmaxchars', 'sigmaxrawchars', 'sigmaxlines', 'usercsspermissions',
'albumpermissions', 'albumpicmaxwidth', 'albumpicmaxheight', 'albummaxpics', 'albummaxsize', 'socialgrouppermissions',
'pmthrottlequantity', 'groupiconmaxsize', 'maximumsocialgroups')
),