Foros de discusión

Finding preferences for all portlet instances

thumbnail
Danny Stevens, modificado hace 12 años.

Finding preferences for all portlet instances

New Member Mensajes: 20 Fecha de incorporación: 15/09/11 Mensajes recientes
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 hace 12 años.

RE: Finding preferences for all portlet instances

New Member Mensajes: 20 Fecha de incorporación: 15/09/11 Mensajes recientes
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 hace 12 años.

RE: Finding preferences for all portlet instances (Respuesta)

Liferay Legend Mensajes: 1228 Fecha de incorporación: 14/04/08 Mensajes recientes
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 hace 12 años.

RE: Finding preferences for all portlet instances

New Member Mensajes: 20 Fecha de incorporación: 15/09/11 Mensajes recientes
Thanks Victor,

that is exactly what I was looking for.

cheers

Danny