Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've managed to import about 600 users from Active Directory using LDAP and I'm trying to set every single user's default private theme to the Social Office theme. Is there a way to select every single user and assign them the Social Office User role? Is this the right way to go about doing this or do I need to delete all the users and re-import them?

share|improve this question

1 Answer

up vote 1 down vote accepted

At the time of import you can use void com.liferay.portal.service.LayoutLocalServiceUtil.importLayouts(long userId, long groupId, boolean privateLayout, Map<String, String[]> parameterMap, File file); to update the privateLayout for each user or if you want to update publicPage layout then pass argument privateLayout=false for reference:check com.liferay.portal.service.LayoutLocalServiceUtil()

share|improve this answer
How would I use this? Does this need to go inside a hook? If so what file would I be overwriting? – jamsea Nov 1 '12 at 11:32
" import about 600 users from Active Directory" are you using the LDAP? or you have built the custom portlet? – lucky Nov 2 '12 at 5:06
LDAP, I'll reword my question to make that clear – jamsea Nov 2 '12 at 11:28
If you are working over LR6.1.1 version then along with user import there is also configuration for group import for individual user, have you tried that ? – lucky Nov 5 '12 at 5:04
Yes, I've managed to import users and groups from the LDAP authentication screen in Liferay, but their private pages are always set to the Classic theme by default. I want to have their private pages set to another theme by default. – jamsea Nov 6 '12 at 18:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.