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.

UsageΒΆ

As this extension just provides further post processors to use with TYPO3 native Form element, all you have to do is to add the necessary configuration to the form configuration. Open the content element containing the form, and add the post processor.

Currently the wizard is not supported, so you have to write the configuration yourself. E.g.:

method = post
prefix = tx_form
confirmation = 1
postProcessor {
    1 = WebVision\WvFormDbInsert\Form\PostProcessor\HashInput
    1 {
        fields = password
    }

    2 = WebVision\WvFormDbInsert\Form\PostProcessor\DbInsert
    2 {
        tableName = fe_users
        columns {
            pid = 55
            disable = 1
        }
    }
}

In context, it will look like:

_images/example.png

The configuration will not be removed while using the wizard.

To allow the post processor to insert values, the field names of form and database table have to match. There is no option to define a mapping.

To find out how to configure the post processors and which are available, take a look at the Configuration.