Download the PHP package bitpatroon/typo3_tca2 without Composer
On this page you can find all versions of the php package bitpatroon/typo3_tca2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download bitpatroon/typo3_tca2
More information about bitpatroon/typo3_tca2
Files in bitpatroon/typo3_tca2
Download bitpatroon/typo3_tca2
More information about bitpatroon/typo3_tca2
Files in bitpatroon/typo3_tca2
Vendor bitpatroon
Package typo3_tca2
Short Description Allows additional functions like conditions to if in pageTSConfig.
License GPL-2.0-or-later
Package typo3_tca2
Short Description Allows additional functions like conditions to if in pageTSConfig.
License GPL-2.0-or-later
Please rate this library. Is it a good library?
Informations about the package typo3_tca2
typo3_tca2
Allows additional function like conditions to if in pageTSConfig
USAGE
Example 1
Conditionally add a new item 123 (myItem) on tt_content.layout.
[userFunc = MyFunc(params)]
TCEFORM.tt_content.layout {
addItems {
123 = myItem
}
}
[global]
can be rewritten into
TCEFORM.tt_content.layout {
addItems {
123 = myItem
123.userFunc = MyFunc(params)
}
}
Example 2
Conditionally disable layout 1 on tt_content.
[userFunc = MyFunc(params)]
TCEFORM.tt_content.layout {
disabled = 1
}
[global]
can be rewritten into
TCEFORM.tt_content.layout {
disabled = 1
disabled.userFunc = MyFunc(params)
}
All versions of typo3_tca2 with dependencies
PHP Build Version
Package Version
The package bitpatroon/typo3_tca2 contains the following files
Loading the files please wait ....