Created
April 10, 2014 09:08
-
-
Save andyhausmann/10359812 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TYPO3.Neos:SomeTag provides Meta Tag for the Google Webmaster Tools Site Verification | |
# | |
prototype(TYPO3.Neos:SomeTage) < prototype(TYPO3.TypoScript:Tag) { | |
tagName = 'meta' | |
attributes { | |
name = 'some-tag-name' | |
content = '' | |
} | |
//@process.1 = ${this.attributes.content != '' ? value : ''} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
true, this will not work. though I think it is a good idea.
Example which should work:
!!!! Currently not public API, so as soon as the "real" solution with
@process.1 = ${this.attributes.content != '' ? value : ''}
works, this should be used.