VarDumpDebuggerΒΆ

Will print out the debug messages to screen as VarDump.

TypoScript Path

plugin.tx_formhandler_form.settings.predefinedForms.[x].debuggers.VarDumpDebugger

Example Code:

plugin.tx_formhandler_form.settings.predefinedForms.devExample {
  debuggers {
    VarDumpDebugger {
      model = VarDumpDebugger
      config {
        active = true
        maxDepth = 20
      }
    }
  }
}

Properties

active

Status of the debugger

Mandatory

False

Data Type

Boolean

Default

False

ansiColors

If True, ANSI color codes is added to the output, if False the debug output is not colored.

Mandatory

False

Data Type

Boolean

Default

True

blacklistedClassNames

An array of class names (RegEx) to be filtered. Default is an array of some common class names.

Mandatory

False

Data Type

Array<Integer, String>|Null

Default

Null

blacklistedPropertyNames

An array of property names and/or array keys (RegEx) to be filtered. Default is an array of some common property names.

Mandatory

False

Data Type

Array<Integer, String>|Null

Default

Null

maxDepth

Sets the max recursion depth of the dump. De- or increase the number according to your needs and memory limit.

Mandatory

False

Data Type

Integer

Default

8

plainText

if True, the dump is in plain text, if False the debug output is in HTML format

Mandatory

False

Data Type

Boolean

Default

False

return

If True, the dump is returned for custom post-processing (e.g. embed in custom HTML). If False, the dump is directly displayed.

Mandatory

False

Data Type

Boolean

Default

False

title

Optional custom title for the debug output

Mandatory

False

Data Type

String|Null

Default

Null