Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

getHomeFolder (See related posts)

// retrieving the home folder of the current user
   1  
   2  m = pm.getAuthenticatedMember()
   3  pm = context.portal_membership
   4  mf = pm.getHomeFolder()

// retrieving the home folder of the a specific user
   1  
   2  mf = pm.getHomeFolder(userId)

You need to create an account or log in to post comments to this site.


Click here to browse all 5349 code snippets

Related Posts