Quote:
Originally Posted by hellsatan
Is there any way of making that display it based on a usergroup field?
Because I want it to display it by "legendorder" the field I created
I'm stuck using the query because I can't figure out how I can make it order it how I want
Satan
|
I'll give it a shot.
PHP Code:
// Get all usergroups that have style changes.
foreach ($vbulletin->usergroupcache AS $group)
{
if (!$group['opentag'] AND !$group['closetag']) {
continue;
}
$legend_array[$group['legendorder']] = $group['opentag'] . $group['title'] . $group['closetag'];
}
ksort($legend_array, SORT_NUMERIC);
$legend = implode(" | ", $legend_array);