TYPO3 CMS  TYPO3_7-6
DebugViewHelper.php
Go to the documentation of this file.
1 <?php
3 
4 /* *
5  * This script is part of the TYPO3 project - inspiring people to share! *
6  * *
7  * TYPO3 is free software; you can redistribute it and/or modify it under *
8  * the terms of the GNU General Public License version 2 as published by *
9  * the Free Software Foundation. *
10  * *
11  * This script is distributed in the hope that it will be useful, but *
12  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- *
13  * TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General *
14  * Public License for more details. *
15  * */
16 
21 
42 {
55  public function render($title = null, $maxDepth = 8, $plainText = false, $ansiColors = false, $inline = false, $blacklistedClassNames = null, $blacklistedPropertyNames = null)
56  {
57  return static::renderStatic(
58  [
59  'title' => $title,
60  'maxDepth' => $maxDepth,
61  'plainText' => $plainText,
62  'ansiColors' => $ansiColors,
63  'inline' => $inline,
64  'blacklistedClassNames' => $blacklistedClassNames,
65  'blacklistedPropertyNames' => $blacklistedPropertyNames
66  ],
68  $this->renderingContext
69  );
70  }
71 
80  {
81  return DebuggerUtility::var_dump($renderChildrenClosure(), $arguments['title'], $arguments['maxDepth'], (bool)$arguments['plainText'], (bool)$arguments['ansiColors'], (bool)$arguments['inline'], $arguments['blacklistedClassNames'], $arguments['blacklistedPropertyNames']);
82  }
83 }
static var_dump($variable, $title=null, $maxDepth=8, $plainText=false, $ansiColors=true, $return=false, $blacklistedClassNames=null, $blacklistedPropertyNames=null)
render($title=null, $maxDepth=8, $plainText=false, $ansiColors=false, $inline=false, $blacklistedClassNames=null, $blacklistedPropertyNames=null)
static renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)