Sourabh
Sourabh

Reputation: 61

Liferay Freemarker Variable List

I am looking for list of all freemarker variables in Liferay.

Similar question : Freemarker and Velocity Template Variables has list of all Velocity variables, but not freemarker.

Upvotes: 4

Views: 3309

Answers (1)

Olaf Kock
Olaf Kock

Reputation: 48067

As you neither give a version nor a usecase (Application Display Template, Web Content Template, Theme or other): A good starting point is the initialization that is done in TemplateContextHelper (choose the branch for your version of interest).

Check the name of this class: It's meant to be independent of Velocity or Freemarker - it's typically safe to assume that both have the same values available.

And, depending on the version and the amount of work that you'd like to do yourself, you can also build this list yourself. Check this and this article.

Upvotes: 4

Related Questions