Ah! I think I finally understand this hook system!
All I have to do is write the XML stuff like described
here.
Then all I have to do is write the code in the CDATA tag?
Like my code could be something like this:
PHP Code:
$gids = explode(',', $user['membergroupids']);
foreach ($gids AS $gid)
{
if is_stacked_display_usergroup($gid)
{
$user['musername'] = $vbulletin->usergroupcache["$gid"]['opentag'] . $user['musername'] . $vbulletin->usergroupcache["$gid"]['closetag'];
}
}
Then all I have to do is write the "is_stacked_usergroup()" function and maybe add a field to the membergroups table or something?
Is that really just how simple it is? :O
--------------- Added [DATE]1224887791[/DATE] at [TIME]1224887791[/TIME] ---------------
One more question, though.
How would I go about modding the AdminCP so that I can have a Yes/No radio button or a checkbox or something when adding/altering usergroups?
I've been looking at
this thread, but I'm not sure if that's what I'm looking for. O.o
--------------- Added [DATE]1224895257[/DATE] at [TIME]1224895257[/TIME] ---------------
Oh, I see now! I can just make a plugin for the admin_usergroup_edit hook!
I understand now. :3 Yes yes yes...
[high]* DragonBlade goes back to coding.[/high]
--------------- Added [DATE]1224902957[/DATE] at [TIME]1224902957[/TIME] ---------------
Yay! Completion!