TSconfig reference

If your extension uses TSconfig you can document it here.

This section covers all configurations which can be set with TSconfig. Every configuration starts with tx_myextension..

User TSconfig

enableSomething
type

bool

Default

false

If true, something is enabled...

Example:

tx_myextension.enableSomething = true
Copied!

Page TSconfig

limitSomething
type

int

Default

5

This value limits something. If it is set to 0 the thing will be unlimited...

Example, limit something to 10:

tx_myextension.limitSomething = 10
Copied!
someImportantPages
type

list

Default

''

Comma-list of fields from the pages-table. These fields are ...

Example, limit something to 10:

tx_myextension.someImportantPages = 4, 7, 42
Copied!