I'm not sure if I understand what you are asking. I have an array in one of my products called $vbulletin->options[verify_forums]. It is a bunch of forumids. In order to use them in a template, I do the following:
PHP Code:
$vfarray=$vbulletin->options[verify_forums];
$verifyforums = explode(",", $vfarray);
Then in the template I do:
HTML Code:
<if condition="in_array($threadinfo[forumid], $verifyforums)">
I'm not sure if that is what you were looking for.