What is the best usage of TypoScript in Fluid templates?

偶尔善良 提交于 2019-11-29 11:23:45
Georg Ringer

I disagree on the opinion of pgampe as there are big differences regarding those 2 approaches!

If you are using variables, those are always rendered, even though those content elements are not used in the frontend. This can have huge side effects which are really hard to tackle. Some examples

  • You have some heavy USER_INT plugins on a page in a column which is not in use (anymore). those will be still called even though they are never shown
  • You are using EXT:news and the feature ExcludeDisplayedNews. If there is a news plugin rendered somehow via variables (but never outputted), a news plugin which is rendered and shown will miss news records

You should use template variables for all elements that are rendered unconditionally or heavily depend on the current page context.

Elements that are rendered depending on other records values are better used via the cObject viewhelper.

Technically there is not much difference as long as the result is cached in the page cache. It is only a matter of taste and readability which method to prefer.

The both method can use dataProcessors to return arrays or objects that can be iterated or otherwise processed in the template. Especially for menu generation, the upcoming TYPO3 8.x LTS will have a menu processor that spits out the menu as array. See feature #78672 (included since TYPO3 8.5). If you use something like that, then I suggest to always pass it as variable. This makes it much more clear and does not hide it in the template.

https://docs.typo3.org/typo3cms/extensions/core/8-dev/Changelog/8.5/Feature-78672-IntroduceFluidDataProcessorForMenus.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!