Is it possible to compare variables in TypoScript? If it is possible - then how?
|
feedback
|
|
I struggled with the very same issue, so here is what I found out. I was trying to include a plugin, but only if a certain TypoScript configuration variable was already set, which isn't possible using TypoScript conditions, because these don't have access to TypoScript variables! So the way to go really is the ominous
What they do not mention is, that, if the
This TEXT-element would never be displayed, because the condition does not evaluate to true. The following however, would be displayed:
The only good example in the documentation is this one:
But beware... these properties are not available on any element type ( What I did to workaround that problem was to wrap the
| |||
|
feedback
|
|
You can compare variables by using the equals-keyword. If you typoscript is
then you can assign a
and a condition
I'm sorry it's from my memory but you can read it in the typoscript manual. I want to say it's a recursive data structure using an adjacent tree model. Here is a link: http://typo3.org/documentation/document-library/core-documentation/doc_core_tsref/4.5.0/view/1/5/#id2621713 | |||||||||
feedback
|