Fórum

Finding preferences for all portlet instances

thumbnail
Danny Stevens, modificado 12 Anos atrás.

Finding preferences for all portlet instances

New Member Postagens: 20 Data de Entrada: 15/09/11 Postagens Recentes
I have a site with multiple pages each with multiple instances of a portlet on the page, each instance with its own preference settings.

I have a scheduled task executing that needs to find the preferences for each instance on each page and do some work with that information.

I have searched all over the wikies and can't find what I'm looking for. Anyone able to help?
thumbnail
Danny Stevens, modificado 12 Anos atrás.

RE: Finding preferences for all portlet instances

New Member Postagens: 20 Data de Entrada: 15/09/11 Postagens Recentes
I am currently considering reading the database. It would be better to use some higher level liferay function though.

This query appears to do the trick in SQL.


select * from portlet p, portletpreferences pp
where p.portletid=pp.portletid
and (p.portletid like '%cms%' or p.portletid like '%data%')
and p.active_=true



then I just read the preferences in.
thumbnail
Victor Zorin, modificado 12 Anos atrás.

RE: Finding preferences for all portlet instances (Resposta)

Liferay Legend Postagens: 1228 Data de Entrada: 14/04/08 Postagens Recentes
Do not do database, see extract from our code below:

import com.liferay.portal.service.PortletPreferencesLocalServiceUtil;
import com.liferay.portal.service.LayoutLocalServiceUtil;
import com.myoffice24x7.common.portlet.BaseConfigurableItem;
...
int totalCount = PortletPreferencesLocalServiceUtil
.getPortletPreferencesesCount();
...
java.util.List<com.liferay.portal.model.PortletPreferences> list = PortletPreferencesLocalServiceUtil
.getPortletPreferenceses(currentIndex, toIndex);

java.util.Iterator<com.liferay.portal.model.PortletPreferences> it = list
.iterator();
while (it.hasNext()) {
com.liferay.portal.model.PortletPreferences pref = it.next();
if (pref.getPortletId().startsWith(config.getPortletName())) {
String settings = LayoutLocalServiceUtil.getLayout(pref.getPlid()).getTypeSettings();
...
thumbnail
Danny Stevens, modificado 12 Anos atrás.

RE: Finding preferences for all portlet instances

New Member Postagens: 20 Data de Entrada: 15/09/11 Postagens Recentes
Thanks Victor,

that is exactly what I was looking for.

cheers

Danny