Forums de discussion

What is the use of *.flt files in classic theme of Liferay 6?

thumbnail
zaheer mohammed saddapalli, modifié il y a 13 années.

What is the use of *.flt files in classic theme of Liferay 6?

Regular Member Publications: 165 Date d'inscription: 15/01/08 Publications récentes
Hi All,

I am trying to explore Liferay 6 theme part. I find many *ftl files in classic theme template folder. Here the files

  • init.ftl
  • init_custom.ftl
  • navigation.ftl
  • portal_normal.ftl
  • portlet.ftl


Here i would like to know the purpose of those ftl files

With Regards,
S Mohammed Zaheer
thumbnail
Sandeep Nair, modifié il y a 13 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Liferay Legend Publications: 1744 Date d'inscription: 06/11/08 Publications récentes
Its the extension for a template language called freemarker, just as vm is for velocity. Apparently liferay 6 also supports freemarker along with velocity.

http://www.liferay.com/community/forums/-/message_boards/message/4721160

Regards,
Sandeep
thumbnail
zaheer mohammed saddapalli, modifié il y a 13 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Regular Member Publications: 165 Date d'inscription: 15/01/08 Publications récentes
I know freemarker template language.

Let me explan in detail. There are bith Velocity Template and Freemarker Template file available in templates folder of classic theme in Liferay 6.

Why both?


With Regards,
Mohammed Zaheer
thumbnail
Sandeep Nair, modifié il y a 13 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Liferay Legend Publications: 1744 Date d'inscription: 06/11/08 Publications récentes
Check out the link that i gave b4, in one of the replies its said that support is given for both, and by default velocity is enabled, i guess there must be some property file which when set, begins to use freemarker

Regards,
Sandeep
thumbnail
zaheer mohammed saddapalli, modifié il y a 13 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Regular Member Publications: 165 Date d'inscription: 15/01/08 Publications récentes
Excellent feature ....

Here are the setting to use Freemarker Template Language

I have changed template-extion from vm to ftl for enabling Freemarker Templates Language in theme part.


<theme id="classic" name="Classic">
		<root-path>/html/themes/classic</root-path>
		<templates-path>${root-path}/templates</templates-path>
		<images-path>${root-path}/images</images-path>
	[b]	<template-extension>ftl</template-extension>[/b]

</theme>



Thank you Sandeep...

With Regards,
S Mohammed Zaheer
thumbnail
Sandeep Nair, modifié il y a 13 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Liferay Legend Publications: 1744 Date d'inscription: 06/11/08 Publications récentes
Thanks for sharing that one zaheer
thumbnail
Sushil Kumar Saini, modifié il y a 11 années.

RE: What is the use of *.flt files in classic theme of Liferay 6?

Regular Member Publications: 104 Date d'inscription: 27/07/11 Publications récentes
zaheer mohammed saddapalli:
Excellent feature ....

Here are the setting to use Freemarker Template Language

I have changed template-extion from vm to ftl for enabling Freemarker Templates Language in theme part.


<theme id="classic" name="Classic">
		<root-path>/html/themes/classic</root-path>
		<templates-path>${root-path}/templates</templates-path>
		<images-path>${root-path}/images</images-path>
	[b]	<template-extension>ftl</template-extension>[/b]

</theme>



Thank you Sandeep...

With Regards,
S Mohammed Zaheer

Thanks Zaheer for posting this helpful information ...!!