This project is no longer maintained and no further public releases are planned.

No further support will be given.

Feel free to fork the git repository.

How to use your own component

  • Create a new extension (Example: myext)
  • Create a folder 'Classes' and put your components there.

Example:

myext/Classes/Finisher/MyFinisher.php

  • Make sure your class extends the abstract base class (Example: \Typoheads\Formhandler\Finisher\AbstractFinisher)
  • Use your class in TypoScript.

Example:

finishers.1.class = \Vendor\MyExt\Finisher\MyFinisher

to top