UserForms module provides a visual form builder for the SilverStripe CMS. No coding required to build forms such as contact pages.
Go to file
helpfulrobot aa95cfd881 Added standard git attributes 2015-11-19 19:10:45 +13: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 BUG Prevent subsequent write being triggered in onAfterWrite() 2015-10-28 14:51:00 +13:00
css Consistant treatment of field's right title 2015-08-21 15:21:33 +12: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 BUG Prevent subsequent write being triggered in onAfterWrite() 2015-10-28 14:51:00 +13:00
lang Update translations 2015-11-17 16:07:38 +13:00
scss Consistant treatment of field's right title 2015-08-21 15:21:33 +12: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 Add option for displaying error messages at the top of the form 2015-07-22 09:19:48 +12:00
.editorconfig Adding .editorconfig 2014-12-04 15:43:27 +00: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 Add 3.0.2 changelog 2015-09-21 10:17:27 +12:00
code-of-conduct.md Made supported 2015-09-11 11:01:15 +12:00
composer.json Made supported 2015-09-11 11:01:15 +12: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 Made supported 2015-09-11 11:01:15 +12:00
readme.md Making requirements clearer 2015-09-23 10:00:32 +12: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)

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.