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
| <f:form.textfield additionalAttributes="{data-hint: '{f:translate(id: \'hint\')}'}" |
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: | |
| Flow: | |
| error: | |
| errorHandler: | |
| exceptionalErrors: [%E_USER_ERROR%, %E_RECOVERABLE_ERROR%, %E_WARNING%, %E_USER_WARNING%] |
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
| # Action | |
| /** | |
| * Shows a list of books | |
| * | |
| * @return void | |
| */ | |
| public function booksAction() { | |
| $genre = $this->getQueryStringVar('genre'); | |
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
| prototype(Your.Package:StartingPoint.De) < prototype(TYPO3.TypoScript:Value) { | |
| value = ${q(site).children('de').children('artikel').get(0)} | |
| } | |
| prototype(Your.Package:StartingPoint.En) < prototype(TYPO3.TypoScript:Value) { | |
| value = ${q(site).children('en).children('article').get(0)} | |
| } |
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
| config.tx_extbase { | |
| persistence { | |
| classes { | |
| My_Wonderful_Class = tx_some_other_table | |
| My\Wonderful\Class = tx_example_for_namespaced_class | |
| } | |
| } | |
| } |
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.NeosDemoTypo3Org:Tabs': | |
| superTypes: ['TYPO3.Neos:Content'] | |
| childNodes: | |
| tabItems: | |
| type: 'TYPO3.Neos:ContentCollection' | |
| ui: | |
| label: 'Tabs' | |
| group: 'plugins' |
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
| http://startbootstrap.com/business-casual | |
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
| {namespace neos=TYPO3\Neos\ViewHelpers} | |
| {namespace media=TYPO3\Media\ViewHelpers} | |
| <div class="article-list-element"> | |
| <media:image asset="{headerimage}" alt="{title}" maximumHeight="465" /> | |
| <h2>{title}</h2> | |
| {neos:contentElement.editable(property: 'teaser')} | |
| <p><neos:link.node node="{node}" class="btn btn-default">Details about this</neos:link.node></p> |
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
| prototype(Customer.Products:ProductImageContainer) { | |
| text = ${q(node).property('text')} | |
| link = ${q(node).property('link')} | |
| image = TYPO3.Neos.NodeTypes:Image { | |
| @override.node = ${q(node).children('content').children('[instanceof TYPO3.Neos.NodeTypes:Image]').get(0)} | |
| } | |
| } |
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
| 'Foo.Bar:Box': | |
| superTypes: ['TYPO3.Neos:Content'] | |
| abstract: FALSE | |
| childNodes: | |
| boxcontent: | |
| type: 'TYPO3.Neos:ContentCollection' | |
| ui: | |
| group: 'structure' | |
| label: 'Content Box' | |
| icon: 'icon-columns' |