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.

Users ManualΒΆ

  1. Install Extension
  2. Create a form using the wizard
  3. Add the Post Processer 'User' to the form
  4. Define your User Function, for Example 'VendorProcuctUtilityUserFunctions->myUserFunction'

The PostProcessor will pass two arguments to the user function, the first argument holds the submitted form data, the second argument is a reference to itself. The User Function must accept these two arguments, for example:

public function myUserFunction($formArray, &$pObj) {
        ... custom code
}