DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

FiltersΒΆ

Add filters to the FORM objects.

It is possible to have multiple filters for one FORM object, but the filters have to be added one by one.

The submitted data for this particular object will be filtered by the assigned filters in the given order. The filtered data will be shown to the visitor when there are errors in the form or on a confirmation page. Otherwise the filtered data will be send by mail to the receiver.

Example

The example shown below applies two filters to a FORM object.

  • Submitted data: john doe3
  • Filtered: John Doe
filters {
  1 = alphabetic
  1 {
    allowWhiteSpace = 1
  }
  2 = titlecase
}