掲示板

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

thumbnail
13年前 に zaheer mohammed saddapalli によって更新されました。

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

Regular Member 投稿: 165 参加年月日: 08/01/15 最新の投稿
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
13年前 に Sandeep Nair によって更新されました。

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

Liferay Legend 投稿: 1744 参加年月日: 08/11/06 最新の投稿
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
13年前 に zaheer mohammed saddapalli によって更新されました。

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

Regular Member 投稿: 165 参加年月日: 08/01/15 最新の投稿
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
13年前 に Sandeep Nair によって更新されました。

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

Liferay Legend 投稿: 1744 参加年月日: 08/11/06 最新の投稿
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
13年前 に zaheer mohammed saddapalli によって更新されました。

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

Regular Member 投稿: 165 参加年月日: 08/01/15 最新の投稿
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
13年前 に Sandeep Nair によって更新されました。

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

Liferay Legend 投稿: 1744 参加年月日: 08/11/06 最新の投稿
Thanks for sharing that one zaheer
thumbnail
11年前 に Sushil Kumar Saini によって更新されました。

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

Regular Member 投稿: 104 参加年月日: 11/07/27 最新の投稿
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 ...!!