Wednesday 17 November 2004 7:49:36 am
I found this code snippet in the documentation:
{let user=fetch( 'user', 'current_user' )}
User: {$user.contentobject.name}<br />
Email: {$user.email}<br />
Login: {$user.login}<br />
Group(s): {$user.groups|implode(', ')}<br />
{/let}
the code show me this result:
User: Anonymous User
Email: nospam@ez.no
Login: anonymous
Groups: 42
but is still show the Object ID of "anonymous" group, how can i access of attribute "name" and "description" of class "group" that can i found in the "classes" link in admin site?
|