.. include:: /Includes.rst.txt .. _typo3-fluid-debug: ============================ debug ViewHelper `` ============================ This ViewHelper generates a HTML dump of the tagged variable. Examples ======== Simple ------ :: {testVariables.array} foobarbazfoo All Features ------------ :: {blogs} [A HTML view of the var_dump] .. _typo3-fluid-debug_arguments: Arguments ========= .. _debug_title: title ----- :aspect:`DataType` string :aspect:`Required` false :aspect:`Description` Optional custom title for the debug output .. _debug_maxdepth: maxDepth -------- :aspect:`DataType` mixed :aspect:`Default` 8 :aspect:`Required` false :aspect:`Description` Sets the max recursion depth of the dump (defaults to 8). De- or increase the number according to your needs and memory limit. .. _debug_plaintext: plainText --------- :aspect:`DataType` mixed :aspect:`Required` false :aspect:`Description` If TRUE, the dump is in plain text, if FALSE the debug output is in HTML format. .. _debug_ansicolors: ansiColors ---------- :aspect:`DataType` mixed :aspect:`Required` false :aspect:`Description` If TRUE, ANSI color codes is added to the plaintext output, if FALSE (default) the plaintext debug output not colored. .. _debug_inline: inline ------ :aspect:`DataType` mixed :aspect:`Required` false :aspect:`Description` If TRUE, the dump is rendered at the position of the tag. If FALSE (default), the dump is displayed at the top of the page. .. _debug_blacklistedclassnames: blacklistedClassNames --------------------- :aspect:`DataType` mixed :aspect:`Required` false :aspect:`Description` An array of class names (RegEx) to be filtered. Default is an array of some common class names. .. _debug_blacklistedpropertynames: blacklistedPropertyNames ------------------------ :aspect:`DataType` mixed :aspect:`Required` false :aspect:`Description` An array of property names and/or array keys (RegEx) to be filtered. Default is an array of some common property names.