Overview
The user info macro displays snippets of information about a user such as fullname and email.
Usage
{user-info:username}
Parameters
| Parameter | Required | Default | Notes | Bubbles Version |
|---|---|---|---|---|
| default | |
|
What snippet of user information to display.
|
1.0 |
| user | |
@creator | Defines which user information is shown for:
|
1.0 |
| profileLink | |
false | If true the user information returned will be a link the user's profile | 1.0 |
Examples
The following markup will display a table of information for the user that created this page:
||Full name|{user-info:fullname}|
||User name|{user-info:username}|
||Email |{user-info:email} |
Results in:
| Full name | Guy Fraser |
|---|---|
| User name | gfraser |
| hidden |
FAQs
.png)








Comments (11)
Nov 10, 2008
Simon Wheatley says:
This portion of Bubbles looks interesting to me; am I able to specify new user i...This portion of Bubbles looks interesting to me; am I able to specify new user info fields (such as the User Information plugin promises, but unfortunately it's still not production ready)?
Nov 11, 2008
Shannon Krebs says:
You can't add new fields in the bubbles plugin unfortunately.You can't add new fields in the bubbles plugin unfortunately.
Nov 12, 2008
Guy Fraser says:
We were planning to add additional fields to users, however Atlassian are stompi...We were planning to add additional fields to users, however Atlassian are stomping around in this area so we've got to wait to see if they are doing something similar.
Nov 12, 2008
Simon Wheatley says:
Hi Guy, I hope the stomping consists of more than the User Information plugin I ...Hi Guy, I hope the stomping consists of more than the User Information plugin I mention above, because that's looking suspiciously like vapourware; can you say anything more?
Nov 12, 2008
Guy Fraser says:
Nope, can't say any more at present. We gave up hope on the user info plugin a l...Nope, can't say any more at present. We gave up hope on the user info plugin a long time ago - even if they get it finished it won't be usable as it stores data in a crappy way that makes it hard to use from other plugins. However, there are MAJOR upgrades to plugins architecture coming to all future versions of Atlassian products that will make it easier than ever to do this sort of stuff.
Apr 01, 2010
Steeve Cayla says:
Hmm looks like the {user-info:@self} in the usage part above isn't the good synt...Hmm looks like the {user-info:@self} in the usage part above isn't the good syntax since the default parameter is the information requested, not the user.
Cheers.
Nov 29, 2010
Wayne Parker says:
Is there a way to welcome visitors by displaying their name? I tried: Welcome ...Is there a way to welcome visitors by displaying their name?
I tried:
Welcome {user-info:fullname}and
Welcome {user-info:fullname|display=@self}but it will only display name and I want it to display the name of whoever the visitor is. Any suggestions?
Nov 29, 2010
Wayne Parker says:
Is there a way to welcome visitors by displaying their name? I tried: Welcome ...Is there a way to welcome visitors by displaying their name?
I tried:
Welcome {user-info:fullname}and
Welcome {user-info:fullname|display=@self}but it will only display my name and I want it to display the name of whoever the visitor is. Any suggestions?
Nov 30, 2010
Sharon Hinde says:
You can do this using a usermacro to access the getFullUserName property of the ...You can do this using a usermacro to access the getFullUserName property of the current user. Call it fullusername and use this code
Then you can use Welcome {fullusername} in your wiki code.
Nov 30, 2010
Wayne Parker says:
Thanks for your help Sharon, but when I try this, I get: fullusername ##...Thanks for your help Sharon, but when I try this, I get:
#set ($username = $action.remoteUser.name)
#set ($fullname = $action.getFullUserName($username))
$fullname
Welcome
May 04, 2011
Sebastian Schmitz says:
Hi, this works fine for me: {user-info:fullname|user=@self} likeso: Anonym...Hi,
this works fine for me:
{user-info:fullname|user=@self}likeso: Anonymous User
Cheers