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(Onedrop.Demo:Atom.Button) < prototype(PackageFactory.AtomicFusion:Component) { | |
| text = '' | |
| type = 'default' | |
| size = '' | |
| renderer = Neos.Fusion:Tag { | |
| tagName = 'button' | |
| attributes.class = PackageFactory.AtomicFusion:ClassNames { | |
| btn = true | |
| btn-default = ${props.type == 'default'} |
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(Acme.Donate:Donate) < prototype(TYPO3.Neos:Plugin) { | |
| package = 'Venstre.VenstreDk' | |
| controller = 'Donate' | |
| 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
| {namespace neos=TYPO3\Neos\ViewHelpers} | |
| {namespace media=TYPO3\Media\ViewHelpers} | |
| <f:layout name="Page" /> | |
| <f:section name="body"> | |
| <article itemscope="" itemtype="http://schema.org/Article" xmlns:f="http://www.w3.org/1999/html"> | |
| <header> | |
| <f:if condition="{tags}"> | |
| <f:for each="{tags}" as="articleTag" iteration="iterator"> | |
| <f:if condition="{iterator.isFirst}"> |
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 MOC\...\ViewHelpers\Form; | |
| /** | |
| * The form checkbox select view helper | |
| * | |
| * @scope prototype | |
| */ | |
| class CheckboxSelectViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\Form\AbstractFormFieldViewHelper { |
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 Your\Package\Form\Finishers; | |
| use TYPO3\Flow\Utility\Arrays; | |
| use TYPO3\Fluid\View\StandaloneView; | |
| use TYPO3\Form\Core\Model\AbstractFinisher; | |
| use TYPO3\Form\Core\Runtime\FormRuntime; | |
| use TYPO3\Form\Exception\FinisherException; | |
| /** |
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
| <neos:contentElement.wrap node="{node}"> | |
| <header> | |
| <neos:contentElement.editable property="title" tag="h1" /> | |
| </header> | |
| </neos:contentElement.wrap> |
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 | |
| /** | |
| * This program is free software. It comes without any warranty, to | |
| * the extent permitted by applicable law. You can redistribute it | |
| * and/or modify it under the terms of the Do What The Fuck You Want | |
| * To Public License, Version 2, as published by Sam Hocevar. See | |
| * http://sam.zoy.org/wtfpl/COPYING for more details. | |
| */ | |
| /** |