Quote:
Originally Posted by footose
I can't figure out how to read / access this array? ($vbulletin->forumcache)
Does it have special naming conventions or is it [0][0] ?
|
run
PHP Code:
var_dump($vbulletin->forumcache);
in a plugin on the forum home. Then view the source and you will get the contents of the forumcache.
You will have to add to the array (you can see how below) but you will have to figure out the actual data yourself.
PHP Code:
$vbulletin->forumcache[] = array(...);
I doubt its going to be easy so good luck