UserForms module provides a visual form builder for the SilverStripe CMS. No coding required to build forms such as contact pages.
Go to file
Will Rossiter f66c3c340a Merge pull request #168 from danieldia/patch-1
FIX: Ensure that the data-add-url single quotes are not processed by join_links
2013-10-17 00:25:12 -07:00
_config userforms.yml: changed FieldEditor.js to UserForm.js (Issue #126) 2013-05-15 19:38:17 +03:00
code Merge pull request #168 from danieldia/patch-1 2013-10-17 00:25:12 -07:00
css Use classname for styling rather than ID 2013-09-07 15:07:22 +12:00
images MINOR: Updated icons so they blend better with the new cms styles 2012-05-07 17:41:29 +12:00
javascript FIX: Check security ID on admin non form links (Fixes #158) 2013-09-04 23:35:01 +12:00
lang Updated master strings 2013-08-23 03:05:44 +12:00
templates FIX: Check security ID on admin non form links (Fixes #158) 2013-09-04 23:35:01 +12:00
tests FIX: escape columns and tables for postgres 2013-07-15 21:52:30 +12:00
thirdparty Added files from old submodules directly 2013-03-18 19:06:47 -04:00
_config.php Use new config API for adding cms additions 2013-05-11 11:39:07 +12:00
.gitignore MINOR Added a .gitignore to the project 2012-05-14 14:17:24 +12:00
.travis.yml Travis support 2013-03-29 09:54:12 +01:00
composer.json Change dependency versions to work for 3.1.0-rc1. 2013-08-12 16:44:23 +12:00
LICENSE Updated license 2012-09-11 21:32:47 +12:00
README.md NEW: Added details to README regarding EditableFormField column clean task 2013-08-09 09:27:14 +12:00
UPGRADE.md Don't use submodules until github downloads support 2013-03-16 11:43:43 +13:00

UserForms

Build Status

Introduction

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

Maintainer Contact

* Will Rossiter (Nickname: wrossiter, willr) `<will (at) fullscreen (dot) io>`

Requirements

  • SilverStripe 3.1

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

  1. Download the module from the link above.
  2. Extract the file (if you are on windows try 7-zip for extracting tar.gz files
  3. Make sure the folder after being extracted is named 'userforms'
  4. Place this directory in your sites root directory. This is the one with framework and cms in it.
  5. Run in your browser - /dev/build to rebuild the database.
  6. You should see a new PageType in the CMS 'User Defined Form'. This has a new 'Form' tab which has your form builder.

Tasks

UserForms EditableFormField Column Clean task

This task is used to clear unused columns from EditableFormField

The reason to clear these columns is because having surplus forms can break form saving.

Currently it only supports MySQL and when it is run it queries the EditableFormField class for the valid columns, it then grabs the columns for the live database it will create a backup of the table and then remove any columns that are surplus.

To run the task login as Admin and go to to http://yoursite/dev/tasks/UserFormsColumnCleanTask

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.