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 = Typoheads\Formhandler\Logger\DB
}
loggers.2 {
  class = Vendor\Ext\Logger
  config {
    table = tx_mypackage_log
  }
}

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.