jambagecom / patch10011
TypoScript Condition userFunc enhancements
Installs: 326
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^12 || ^13
Replaces
- typo3-ter/patch10011: v0.6.0
README
What is does
This extension provides methods to enhance the TypoScript with a userFunc and a check for installed extensions and their version numbers. TYPO3 from version 9.5 to 13.4 is supported.
Use the forum at https://www.jambage.com to ask questions and find answers.
The documentation file manual.odt
is available in the doc folder.
Example
[ext("tt_news")]
# Typoscript lines which will be active only if tt_news has been installed and loaded.
[end]
[ext("tt_news", "version") > "03.05.99"]
# Typoscript lines which will be active only if tt_news in a version greater than 3.5.99 has been installed and loaded.
[end]
Enhancement
Use the hook $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['patch10011']['userFunc'] in order to enhance this extension by any other TYPO3 extension which wants to provide its special userFunc to admins.
The old hook $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['patch10011']['includeLibs'] has been removed.