In case any one wants to know ho to do this. I use a group parameter to narrow down the list.
## @param Group:title=Group|type=string|required=false|desc=Group #set ( $containerManagerClass = $content.class.forName('com.atlassian.spring.container.ContainerManager')) #set ( $getInstanceMethod = $containerManagerClass.getDeclaredMethod('getInstance',null)) #set ( $containerManager = $getInstanceMethod.invoke(null,null)) #set ( $containerContext = $containerManager.containerContext) #set ( $userDetailsManager = $containerContext.getComponent('userDetailsManager')) #set ( $personalInformationManager = $containerContext.getComponent('personalInformationManager')) #set ( $wikiStyleRenderer = $containerContext.getComponent('wikiStyleRenderer')) #set ( $users = $userAccessor.getMembers($userAccessor.getGroup($paramGroup))) <table> <tr> <th></th> <th>Users</th> <th>Email</th> <th>Phone</th> <th>Location</th> <th>Role</th> <th>Department</th> <th>About User</th> </tr> #foreach ($user in $users) #set ( $userD = $userAccessor.getUserByName($user.name)) #set ( $pi = $personalInformationManager.getPersonalInformation($user)) #set ( $renderedAboutMe = $wikiStyleRenderer.convertWikiToXHtml($pi.toPageContext(), $pi.getBodyAsString())) #set ( $phone = $userDetailsManager.getStringProperty($userD, "phone")) #set ( $location = $userDetailsManager.getStringProperty($userD, 'location')) #set ( $position = $userDetailsManager.getStringProperty($userD, 'position')) #set ( $department = $userDetailsManager.getStringProperty($userD, 'department')) #set ( $profile_pic = $userAccessor.getUserProfilePicture($userD)) #set ( $pic_src=$profile_pic.getDownloadPath()) <tr> <td> <a class="confluence-userlink url fn" data-username="$user.name" href=" /display/~$user.name"> <img style="width:40px; height:auto;" src="$pic_src" alt="$usr_nm" border="0" /> </a><br/> </td> <td>Name: $user.fullName <br/> Username: $user.name<br/> <a style="font-size:12px;" href="$action.getGlobalSettings().getBaseUrl()/admin/users/edituser.action?username=$user.name" title="Edit User Details">Edit Details</a> </td> <td>$user.email</td> <td>$phone</td> <td>$location</td> <td>$position</td> <td>$department</td> <td> $renderedAboutMe </td> </tr>
## Clears out latent Value at end of loop to stop value from being set on successive items if empty for user #set ( $renderedAboutMe = "") #set ( $phone = "" ) #set ( $location = "") #set ( $position = "") #set ( $department = "") #end </table>
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.