UserForms module provides a visual form builder for the SilverStripe CMS. No coding required to build forms such as contact pages.
Go to file
Nathan Glasl 1a767851e5 Implementing the "are you sure?" plugin to display a confirmation message when navigating away from a partially completed form. 2016-02-05 10:13:40 +11:00
.tx Transifex support, js globalisation 2013-10-30 14:31:51 +01:00
_config API Integrate with secure assets module 2015-08-28 16:30:41 +12:00
code Implementing the "are you sure?" plugin to display a confirmation message when navigating away from a partially completed form. 2016-02-05 10:13:40 +11:00
css Minor:fixed userforms class name specificity 2016-01-19 15:10:20 +13:00
docs ENHANCEMENT: Add 'HideLabel' field for EditableLiteralField objects 2015-09-28 12:02:08 +13:00
images NEW: Added a numeric field and associated png 2014-02-11 08:59:43 +13:00
javascript Implementing the "are you sure?" plugin to display a confirmation message when navigating away from a partially completed form. 2016-02-05 10:13:40 +11:00
lang Update translations 2016-02-04 17:59:45 +13:00
scss Minor:fixed userforms class name specificity 2016-01-19 15:10:20 +13:00
templates MINOR: fix for styling for one or more buttons that don't need the list styling for the step navigation. Will add the action nav which just shows the buttons 2015-10-22 18:41:24 +13:00
tests BUG Prevent subsequent write being triggered in onAfterWrite() 2015-10-28 14:51:00 +13:00
thirdparty Implementing the "are you sure?" plugin to display a confirmation message when navigating away from a partially completed form. 2016-02-05 10:13:40 +11:00
.editorconfig Added standard editor config 2015-11-19 13:24:29 +13:00
.gitattributes Added standard git attributes 2015-11-19 19:10:45 +13:00
.gitignore Cms styling for fieldgroups 2015-08-12 16:24:06 +12:00
.scrutinizer.yml Added Scrutinizer delay 2015-08-21 09:15:54 +12:00
.travis.yml Fixed code coverage reporting 2015-09-14 12:27:51 +12:00
_config.php API new form editor 2015-08-10 13:15:59 +12:00
changelog.md Update changelog for 3.1.1 release 2016-02-04 18:05:27 +13:00
code-of-conduct.md Added standard code of conduct 2015-11-21 20:11:59 +13:00
composer.json Add changelog for release 2015-11-19 14:46:50 +13:00
config.rb Cms styling for fieldgroups 2015-08-12 16:24:06 +12:00
contributing.md Made supported 2015-09-11 11:01:15 +12:00
license.md Updated license year 2016-01-01 06:37:06 +13:00
readme.md Implementing the "are you sure?" plugin to display a confirmation message when navigating away from a partially completed form. 2016-02-05 10:13:40 +11:00
upgrading.md Made supported 2015-09-11 11:01:15 +12:00

readme.md

UserForms

UserForms enables CMS users to create dynamic forms via a drag and drop interface and without getting involved in any PHP code.

Build Status Code Quality Code Coverage Version License

Requirements

See the "require" section of composer.json

Features

  • Construct a form using all major form fields (text, email, dropdown, radio, checkbox..)
  • Ability to extend userforms from other modules to provide extra fields.
  • Ability to email multiple people the form submission
  • View submitted submissions and export them to CSV
  • Define custom error messages and validation settings
  • Optionally display and hide fields using javascript based on users input
  • Pre fill your form fields, by passing your values by url (http://yoursite.com/formpage?EditableField1=MyValue)
  • Displays a confirmation message when navigating away from a partially completed form.

Installation

$ composer require silverstripe/userforms

You'll also need to run dev/build. You should see a new page type in the CMS 'User Defined Form'. This has a new 'Form' tab which has your form builder.

Documentation

Thanks

I would like to thank everyone who has contributed to the module, bugfixers, testers, clients who use the module and everyone that submits new features.

A big thanks goes out to Jan Düsedau for drawing the custom icon set for the form fields.

Versioning

This library follows Semver. According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library.

All methods, with public visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep protected methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading.

Reporting Issues

Please create an issue for any bugs you've found, or features you're missing.