Fórum

WebContent: Configure auto-expiration by default

thumbnail
Dennis Greiffenberg, modificado 14 Anos atrás.

WebContent: Configure auto-expiration by default

Regular Member Postagens: 222 Data de Entrada: 30/04/07 Postagens Recentes
Hi all,

Liferay's default behaviour is as follows: WebContent is infinitely valid (once approved). This can be changed on individual basis (i.e. per WebContent). Once the appropriate selectbox is deactivated, a date-field becomes active. The default expiration time for an article is one year in advance.

My question is as follows: Can the default behaviour configured the otherway round. So WebContent, by default, does expire? And if so: Can the period be tweaked as well, say I don't want content to be valid for a years time but only for four weeks?

...or is that something that I would have to change by means of programming?
And if so: Where?

Any hint / help is greatly appreciated!

Best regards,
Dennis
thumbnail
Zankar Shah, modificado 14 Anos atrás.

RE: WebContent: Configure auto-expiration by default

Regular Member Postagens: 106 Data de Entrada: 03/10/07 Postagens Recentes
You will have to definitely change the JSP to get your requirement. If you have downloaded liferay source, you can go to portal-web/docroot/html/portlet/journal. The source JSPs are there. If you want to change that you can use hooks for that purpose
thumbnail
Fernando Garcia, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

New Member Postagens: 13 Data de Entrada: 12/04/11 Postagens Recentes
Hi Dennis

I'm facing the same problem and I was wondering if you solved the problem and how you did it ?

Thanks
thumbnail
Dennis Greiffenberg, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

Regular Member Postagens: 222 Data de Entrada: 30/04/07 Postagens Recentes
Hi Fernando,

I think I never really finished this one off (the post is quite some time ago.. ;-) ), but I guess Zankar's suggestion is the right way to follow...

Best regards,
Dennis
Josh Dezike, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

New Member Mensagem: 1 Data de Entrada: 09/08/12 Postagens Recentes
thumbnail
Fernando Garcia, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

New Member Postagens: 13 Data de Entrada: 12/04/11 Postagens Recentes
Hi Dennis.

To change the expiration and review date you need to modify ext-model-hints like this:
<model-hints>
	<model name="com.liferay.portlet.journal.model.JournalArticle">
		<field name="expirationDate" type="Date">
			<hint name="default-month-delta">3</hint>
		</field>
	</model>
</model-hints>
thumbnail
Dennis Greiffenberg, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

Regular Member Postagens: 222 Data de Entrada: 30/04/07 Postagens Recentes
Cool! emoticon

Thanks for that information!

Best regards,
Dennis
Matthias Travis, modificado 11 Anos atrás.

RE: WebContent: Configure auto-expiration by default

New Member Mensagem: 1 Data de Entrada: 24/08/12 Postagens Recentes