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.

Loggers

Loggers take care of logging every form submission.

Logger_DB gets called by Formhandler automatically as its log data is used by various Finishers and Generators and the Backend Module.

Version added

1.0.0

TypoScript path

plugin.Tx_Formhandler.settings.loggers copy to clipboard

Example code

loggers.1 {
  class = Tx_Formhandler_Logger_DB
}
loggers.2 {
  class = Tx_MyPackage_Logger
  config {
    table = tx_mypackage_log
  }
}

You can enter as many loggers as you like. Each entry requires a class name of the logger. Optionally you can enter a specific configuration for the logger in the config section.

Logger_DB

Will log into tx_formhandler_log. The logs can be accessed via the Formhandler backend module. NOTE: The Logger_DB will log into the database and store the UID of the inserted record into the user ses...

Logger_DevLog

Will log into the table "tx_devlog". Use the extension devlog to access the logged messages.