Well I tried this:
outside the while loop
Code:
foreach ($usergroupdata AS $test) {
eval('$der .= "' . fetch_template('jon') . '";');
}
and inside that template I put the variable $test
and it prints out all the usergroup titles, so it worked! However your saying it could be done another way right? Which is best?
--------------- Added [DATE]1239220692[/DATE] at [TIME]1239220692[/TIME] ---------------
Ok got a little further but stuck again.
newthread form complete hook:
Code:
$usergroupids = $vbulletin->userinfo['usergroupid'];
if (!empty($vbulletin->userinfo['membergroupids']))
{
$usergroupids .= ',' . $vbulletin->userinfo['membergroupids'];
}
$usergroups = $vbulletin->db->query_read("
SELECT *
FROM " . TABLE_PREFIX . "usergroup
WHERE usergroupid IN ($usergroupids)
");
$usergroupdata = array();
while ($usergroup = $vbulletin->db->fetch_array($usergroups))
{
$usergroupdata[$usergroup['usergroupid']] = $usergroup['title'];
}
foreach ($usergroupdata AS $value1 => $value) {
eval('$der .= "' . fetch_template('jon') . '";');
}
Templete
Jon:
Code:
<label for="usergroups">
<input type="checkbox" name="value1[]" value="$value1" id="" tabindex="1" />$value
</label>
newthread post complete hook:
Code:
$vbulletin->input->clean_array_gpc('p', array('value1' => TYPE_ARRAY));
echo $vbulletin->GPC['value1'];
Granted theres supposed to be more code in the post complete hook, but the theory at least for now is just echo back whichever checkbox was selected. However value1 isn't doing me any good!