All Projects → neos → fusion-form

neos / fusion-form

Licence: GPL-3.0 license
No description or website provided.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to fusion-form

form-builder
Flow Form Framework integration into Neos CMS
Stars: ✭ 17 (+6.25%)
Mutual labels:  neoscms
Flowpack.SimpleSearch.ContentRepositoryAdaptor
Adaptor for the Neos CR, based on the SimpleSearch package
Stars: ✭ 23 (+43.75%)
Mutual labels:  neoscms
graphql
Flow Package to add graphql APIs to Neos and Flow that also supports some advanced features
Stars: ✭ 14 (-12.5%)
Mutual labels:  neoscms
Sitegeist.Monocle
An fusion based styleguide implementation for Neos
Stars: ✭ 46 (+187.5%)
Mutual labels:  neoscms
Flowpack.SearchPlugin
A simple search plugin for Neos
Stars: ✭ 23 (+43.75%)
Mutual labels:  neoscms
flow-debugproxy
A Flow Framework Debug proxy for xDebug, written in Go
Stars: ✭ 24 (+50%)
Mutual labels:  neoscms
Sitegeist.Kaleidoscope
Responsive Images for Neos CMS
Stars: ✭ 27 (+68.75%)
Mutual labels:  neoscms
Carbon.Gulp
Carbon/Gulp is a delicious blend of tasks and build tools poured into Gulp to form a full-featured modern asset pipeline for Flow Framework and Neos CMS.
Stars: ✭ 15 (-6.25%)
Mutual labels:  neoscms
Sitegeist.MagicWand
Tools that make the Flow/Neos development easier
Stars: ✭ 47 (+193.75%)
Mutual labels:  neoscms
KaufmannDigital.GDPR.CookieConsent
A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.
Stars: ✭ 21 (+31.25%)
Mutual labels:  neoscms
EelShell
A shell for EEL expressions
Stars: ✭ 17 (+6.25%)
Mutual labels:  neoscms
Yeebase.Fusion.ContentCacheDebug
Helper package to debug fusions content cache
Stars: ✭ 13 (-18.75%)
Mutual labels:  neoscms
Sitegeist.Taxonomy
Manage vocabularies and taxonomies as separate node-hierarchy.
Stars: ✭ 14 (-12.5%)
Mutual labels:  neoscms
neos-blog
A simple blog plugin for Neos CMS
Stars: ✭ 17 (+6.25%)
Mutual labels:  neoscms
Newsletter
Neos Newsletter Sending Package
Stars: ✭ 19 (+18.75%)
Mutual labels:  neoscms
Networkteam.Neos.MailObfuscator
Email address obfuscation for Neos CMS
Stars: ✭ 13 (-18.75%)
Mutual labels:  neoscms
neos-debug
Adds a debug panel to your Neos CMS website
Stars: ✭ 31 (+93.75%)
Mutual labels:  neoscms
NeosAcl
No description or website provided.
Stars: ✭ 13 (-18.75%)
Mutual labels:  neoscms
Wysiwyg.ABTesting
A/B Testing Package for Neos
Stars: ✭ 16 (+0%)
Mutual labels:  neoscms
intellij-neos
Support for the Neos CMS in Intellij IDEA / PhpStorm
Stars: ✭ 37 (+131.25%)
Mutual labels:  neoscms

Fusion Form

Pure fusion form rendering with afx support!

Documentation

Neos.Fusion.Form - Form Rendering and Data Binding

This part covers the rendering of forms that are bound to objects or data and will be submitted to a custom Controller Action.

Form.Fusion.Form:Runtime - Runtime Single/Multistep Forms with Actions

This part covers the definition of forms with validation and finishing actions via Fusion. Use cases like contact forms and newsletter subscriptions should be implemented like this.

Development targets

  • Form rendering in fusion with afx and data binding
  • Clear separation of automation and magic for understandable results
  • Flexibility:
    • Make no assumption about the required markup like classNames
    • Allow to override all automatically assigned attributes
    • Enable form fragments as fusion components
    • Allow to bind multiple objects to a single form
    • Enable to create custom controls with
    • Respect form elements that are defined as plain html when rendering __trustedProperties
  • Convenience:
    • Render hidden fields for validation, security and persistence magic
    • Provide validation-errors and restore previously submitted values
    • Prefix fieldnames with the current request namespace if needed
  • Make writing of fusion backend modules easy:
    • Create a backend field container with translated labels and error messages
    • Adjust field markup inside the field container for the neos-backend

Important Deviations from Fluid Form ViewHelpers

The following deviations are probably the ones fluid developers will stumble over. There are many more deviations but those are breaking concept changes you should be aware of.

  • Instead of binding a single object a data DataStructure is bound to the form.
  • Form data-binding is defined via form.data.object={object} instead of objectName and object.
  • Field data-binding is defined vis field.name="object[title]" with the object name and square brackets for nesting.
  • Data binding with property path syntax is not supported.
  • Select options and groups are defined directly as afx content and not options.

Important deviations from the concepts of the Neos.Form package

  • The definitions for form rendering and validation are separated into content and schema of the process.
  • By default the SingleStepProcess is used as this is the most common case. If you need multiple steps the process has to be altered to MultiStepProcess
  • Settings, form data and node properties can be used in a unified way via Fusion to define actions and control the process.
  • Confirmations are no special feature but can be defined as "step" in a MultiStepProcess
  • The concept of finishers is replaced with actions.
  • Actions cannot decide to send the user back into the form process.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].