In Typo3, what is the difference between setup, constants, and TSConfig -
it seems there 3 different places can write typoscript: in templates, there constants field , setup field, , in each page, there tsconfig
field. however, seems each typoscript command need go in specific field. of time, have try before finding if given configuration goes template setup, or in root page tsconfig
.
why there 3 different places write typoscript? use of each of them?
- tsconfig backend configuration. can add/alter/remove values forms, change behavior kind of records users can add, default usergroups etc. see here more details.
- typoscript in template used change frontend behavior, template parsing, extension configuration, navigation etc. typoscript in template has called cobjects provide useful functionality image manipulation (image), getting records database (records), creating menus (hmenu), see reference.
- typoscript constants variables, can used within template typoscript. e.g. have email address occurs in many different places within typoscript template, might want define constant. see documentation more info.
Comments
Post a Comment