Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Typo3, what is the difference between setup, constants, and TSConfig

Tags:

tsconfig

typo3

It seems there are three different places where I can write TypoScript: in templates, there is the constants field and the setup field, and in each page, there is a TSConfig field. However, it seems each TypoScript command need to go in a specific field. Most of the time, I have to try before finding if a given configuration goes into template setup, or in root page TSConfig.

Why are there three different places to write TypoScript? What is the use of each of them?

like image 451
Charles Brunet Avatar asked Feb 17 '11 18:02

Charles Brunet


1 Answers

  • TSconfig is mainly for the backend configuration. You can add/alter/remove values from forms, change the behavior what kind of records users can add, default usergroups etc. see About TSconfig for more details.
  • Typoscript in the template is used to change the frontend behavior, template parsing, Extension configuration, navigation etc. Typoscript in the template has so called cObjects which provide useful functionality like Image manipulation (IMAGE), getting records from the database (RECORDS), creating menus (HMENU), see TypoScript Reference.
  • Typoscript constants are much like variables, which can be used within your template Typoscript. e.g. you have an email address which occurs in many different places within the Typoscript template, you might want to define it as constant. See documentation for more info.
like image 94
konsolenfreddy Avatar answered Sep 27 '22 18:09

konsolenfreddy