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(Fleos:TwoColumn) > | |
| prototype(Fleos:TwoColumn) < prototype(TYPO3.Neos.NodeTypes:MultiColumn) { | |
| attributes.class = 'row' | |
| attributes.style = TYPO3.Neos:ImageUri { | |
| asset = ${q(node).property('backgroundImage')} | |
| @process.wrapBackgroundImage = ${value ? (' background-image: url(' + value + ');') : ''} | |
| @process.addGenericBackground = ${'background: ' + q(node).property('background') + ';' + value} | |
| } |
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
| resources: | |
| methods: | |
| Org_Greeter_Standard_Public_Actions: 'method(Org\Greeter\Controller\StandardController->.*Action())' | |
| acls: | |
| Everybody: | |
| methods: | |
| Org_Greeter_Standard_Public_Actions: GRANT |
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
| - | |
| name: 'Package Vendor.Package' | |
| uriPattern: '<VendorPackageSubroutes>' | |
| subRoutes: | |
| 'VendorPackageSubroutes': | |
| package: 'Vendor.Package' | |
| variables: | |
| 'sitemapBaseUri': '' | |
| - |
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 = TYPO3.Neos:ContentCollection { | |
| tagName = 'ul' | |
| } |
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
| /Build/Reports | |
| /Build/BuildEssentials | |
| /Configuration/Development | |
| /Configuration/Production | |
| /Configuration/Testing | |
| /Configuration/PackageStates.php | |
| /Data/ | |
| /Packages/Application | |
| /Packages/Framework | |
| /Packages/Libraries |
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
| class StreamResource { | |
| public function close(); // fclose | |
| public function read($length = NULL); // fread | |
| public function write($content); // fwrite | |
| public function rewind(); // rewind() | |
| public function getMetaData(); // stream_get_meta_data(), maybe even separate getters for the meta data information | |
| } |
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: | |
| core: | |
| phpBinaryPathAndFilename: '/usr/local/bin/php_cli' | |
| resource: | |
| publishing: | |
| fileSystem: | |
| mirrorMode: copy |
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(TYPO3.NeosDemoTypo3Org:YouTube) > | |
| prototype(TYPO3.NeosDemoTypo3Org:YouTube) < prototype(TYPO3.TypoScript:Value) { | |
| @cache { | |
| mode = 'uncached' | |
| context { | |
| 1 = 'node' | |
| } | |
| } | |
| value = ${request.httpRequest.arguments.foo + ' - ' + q(node).property('video')} |
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:NodeType': | |
| label: | |
| expression: ${some expression here} | |
| generator: | |
| class: 'Some\Node\Label\Generator' | |
| options: | |
| ifNecessary: TRUE |
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
| 'Me.My:NodeType': | |
| # superTypes and ui stuff here | |
| properties: | |
| yourProperty: #adjust to your needs | |
| type: references | |
| ui: | |
| label: 'referenced stuff' #adjust to your needs | |
| inspector: | |
| group: general #adjust to your needs | |
| editorOptions: |