Hi Guys,
I've been playing around with User Macros recently, and have been attempting to render some data so I can explore the content of some classes.
{code}
#set ($pagelist = $content.getContentPermissionSet("View"))
#foreach ($perm in $pagelist)
#set ($typeJeb = $perm.type())
#set ($groupJeb = $perm.groupName())
#set ($userJeb = $perm.userName())
<p>$typeJeb</p>
<p>$groupJeb</p>
<p>$userJeb</p>
#end
{code}
Is what I have at the moment, but it's not quite working - it's just displaying $typeJeb etc. I feel I'm missing something really obvious here!
Kind regards,
Jamie Sawyer
The next code should work (not tested). if you're trying to get the value of the method getType(), then either user $perm.type or $perm.getType(). The full method name is usaly used when an argument is passed through or the method.
#set ($pagelist = $content.getContentPermissionSet("View"))
#foreach ($perm in $pagelist)
<p>${perm.type}</p>
<p>${perm.groupName}</p>
<p>${perm.userName}</p>
#end
Perfect!
Thanks a lot for this one, other than the additional $ in perm.userName, it works perfectly - this'll get me started nicely!
Kind regards,
Jamie Sawyer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.