Skip to content

Instantly share code, notes, and snippets.

View mficzel's full-sized avatar

Martin Ficzel mficzel

  • sitegeist neos solutions GmbH
  • Germany, Hamburg
View GitHub Profile
@grebaldi
grebaldi / Spread.fusion
Created September 5, 2018 10:23
Spread in fusion
/**
* In Fusion
*/
foo = Neos.Fusion:Renderer {
type = 'Vendor.Site:Foo'
element {
...${myContextVariable}
...${myOtherContextvariable}
}
}
@bwaidelich
bwaidelich / Index.html
Created April 30, 2016 12:27
Upload multiple resources in Neos Flow
<f:form action="upload" enctype="multipart/form-data">
<f:form.upload name="resources[]" additionalAttributes="{multiple: true}" />
<f:form.submit value="Upload new resources"/>
</f:form>