I was actually playing with the iforumcache before bobster's recommendation, but it seems the $iforumcache only holds the actually forum numbers. I need to somehow "inject" a new "row" into the final array before it's parsed, so I can add a "custom forum", without actually using the link feature
--------------- Added [DATE]1198882259[/DATE] at [TIME]1198882259[/TIME] ---------------
EDIT: I just ran $vbulletin->forumcache through a simple recurisive algo to see what was in it, seems that more then just "forums" are in it... but might be on the right track?
PHP Code:
<?php
global $vbulletin;
require_once('./global.php');
show_array($vbulletin->forumcache);
function show_array($array)
{
foreach ($array as $value)
{
if (is_array($value))
{
show_array($value);
}
else
{
echo $value . "<br>";
}
}
}
?>
--------------- Added [DATE]1198885645[/DATE] at [TIME]1198885645[/TIME] ---------------
I can't figure out how to read / access this array? ($vbulletin->forumcache)
Does it have special naming conventions or is it [0][0] ?