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
| # Text mixin | |
| 'TYPO3.Neos.NodeTypes:TextMixin': | |
| abstract: TRUE | |
| properties: | |
| text: | |
| type: string | |
| defaultValue: '' | |
| ui: | |
| inlineEditable: TRUE | |
| aloha: |
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
| myImage = TYPO3.TypoScript:Template { | |
| templatePath = "resource://My.Package/Private/Templates/NodeTypes/Image.html" | |
| image = ${q(node).property('image')} | |
| attributes = TYPO3.TypoScript:Attributes { | |
| class = 'image' | |
| data-test = 'testData' | |
| } | |
| } |
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
| <?php | |
| namespace Sms\SmsBlog\ViewHelpers; | |
| /** | |
| * The form checkbox select view helper | |
| * | |
| * @scope prototype | |
| */ | |
| class CheckboxSelectViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\Form\SelectViewHelper { |
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.Neos:ConvertExternalUris) { | |
| @class = 'Sms\\Lsk\\TypoScript\\ConvertExternalUrisImplementation' | |
| value = ${value} | |
| node = ${node} | |
| } |
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
| <?php | |
| namespace Sms\Lsk\TypoScript; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Neos\Domain\Exception; | |
| use TYPO3\TYPO3CR\Domain\Model\NodeInterface; | |
| use TYPO3\TypoScript\TypoScriptObjects\AbstractTypoScriptObject; | |
| class ConvertExternalUrisImplementation extends AbstractTypoScriptObject { | |