Fórum

Hook for portal properties not working as expected

Etien Rožnik, modificado 11 Anos atrás.

Hook for portal properties not working as expected

New Member Postagens: 2 Data de Entrada: 07/11/12 Postagens Recentes
Hi,

im trying to make a hook for overriding a property in the properties of liferay(the property for the menu in the My Account portlet)

I've made the hook trought the Eclipse IDE, and added the property to change to the portal.properties like this:
users.form.my.account.miscellaneous=announcements,display-settings,comments


The properties file is in the WEB-INF/src folder.

The liferay-hook.xml is in the WEB-INF folder:
<!--?xml version="1.0"?-->


<hook>
	<portal-properties>portal.properties</portal-properties>
</hook>



The problem is that, the hook does not remove the menu item that i'm trying to remove.. if i change the property in the portal-ext.properties it works just fine, if i set the property to nothing in the ext properties, the hook works fine, if i just add a menu item in the property, the hook works fine, it just does not want to remove the default item.

Thanks for the help!
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: Hook for portal properties not working as expected

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
You're not suppose to "hook" portal.properties because they only hold "default" values. You'll suppose to create a portal-ext.properties file.
thumbnail
Dave Weitzel, modificado 11 Anos atrás.

RE: Hook for portal properties not working as expected

Regular Member Postagens: 208 Data de Entrada: 18/11/09 Postagens Recentes
It is perfectly OK to override portal.properties using a hook - in fact for user profile type changes this is the recommended route in training and other documentation.
are you sure you are accessing the My Account portlet and not the user update one?

users.form.update.miscellaneous is the property that admin on the control panel will take note of you need to set both.

I'm not sure if this behavior is a result of the bug in GA2 to do with the loading sequence of portal.properties, See http://issues.liferay.com/browse/LPS-29904
That certainly effects the portal-ext.properties but not sure how hooks and other plugins are changed.
thumbnail
Mika Koivisto, modificado 11 Anos atrás.

RE: Hook for portal properties not working as expected

Liferay Legend Postagens: 1519 Data de Entrada: 07/08/06 Postagens Recentes
With hook you can't delete existing values you can only add new ones. If you need to remove some elements just use portal-ext.properties for that.

For some properties the hook used to replace the values on some Liferay version but that was a bug.
Etien Rožnik, modificado 11 Anos atrás.

RE: Hook for portal properties not working as expected

New Member Postagens: 2 Data de Entrada: 07/11/12 Postagens Recentes
Thanks for the answers!

Im using the "My account" tab in the liferay Control Panel..


So i'm supposed to edit the portal-ext.properties to remove some fields?

p.s. im using the latest version of LR portal (6.1 CE GA2)

Thank!