1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper"> <f:comment> parameters: - "datum": datum object with "value" property - "key": array key, e.g. "foo.bar" </f:comment> <f:if condition="{datum}"> <li><at:textdb key="{key}"/></li> </f:if> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ... <ul> <?xml version="1.0"?> <html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper"> <li>Foo</li> </html> <?xml version="1.0"?> <html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper"> <li>Bar</li> </html> </ul> ... |