The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
||||
|
||||
![]()
Well I tried this:
outside the while loop Code:
foreach ($usergroupdata AS $test) { eval('$der .= "' . fetch_template('jon') . '";'); } 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') . '";'); } 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']; |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|