Debug ViewHelper <f:debug>

This ViewHelper is only meant to be used during development.

Examples

Inline notation and custom title

{object -> f:debug(title: 'Custom title')}
Copied!

Output:

all properties of {object} nicely highlighted (with custom title)
Copied!

Only output the type

{object -> f:debug(typeOnly: true)}
Copied!

Output:

the type or class name of {object}
Copied!

Source code

Go to the source code of this ViewHelper: DebugViewHelper.php (GitHub).

Arguments

The following arguments are available for <f:debug>:

Name Type Default
boolean
integer 5
boolean
typeOnly
Type
boolean

If TRUE, debugs only the type of variables

levels
Type
integer
Default
5

Levels to render when rendering nested objects/arrays

html
Type
boolean

Render HTML. If FALSE, output is indented plaintext