A user-page magic word extension
Magic words require being in the User: namespace. If used in any other namespace, the magic words will return a blank value.
{{USERLANGUAGECODE}}- Shows the users language code set in their preferences, or the wikis default language
- Disabled by default
{{USERFIRSTREVISIONSTAMP}}- Timestamp of the users first edit
{{USERGROUPS:all}}- Groups that the user is in, comma separated
allparameter takes a truthy input, when true will show implicit and explicit groups. Otherwise only explicit
{{USERREGISTRATIONSTAMP}}- Timestamp of when the user registered
Each magic word can be enabled or disabled in the LocalSettings.php config
$wgUserWordsUserLanguageCode = true;
$wgUserWordsUserFirstRevisionStamp = true;
$wgUserWordsUserGroups = true;
$wgUserWordsUserRegistrationStamp = true;