public function Debug::dump in Devel 8
Same name and namespace in other branches
- 8.3 src/Twig/Extension/Debug.php \Drupal\devel\Twig\Extension\Debug::dump()
- 8.2 src/Twig/Extension/Debug.php \Drupal\devel\Twig\Extension\Debug::dump()
- 4.x src/Twig/Extension/Debug.php \Drupal\devel\Twig\Extension\Debug::dump()
Provides debug function to Twig templates.
Handles 0, 1, or multiple arguments.
Parameters
\Twig_Environment $env: The twig environment instance.
array $context: An array of parameters passed to the template.
array $args: An array of parameters passed the function.
Return value
string String representation of the input variables.
See also
\Drupal\devel\DevelDumperManager::dump()
File
- src/
Twig/ Extension/ Debug.php, line 93
Class
- Debug
- Provides the Devel debugging function within Twig templates.
Namespace
Drupal\devel\Twig\ExtensionCode
public function dump(\Twig_Environment $env, array $context, array $args = []) {
if (!$env
->isDebug()) {
return;
}
ob_start();
// No arguments passed, display full Twig context.
if (empty($args)) {
$context_variables = $this
->getContextVariables($context);
$this->dumper
->dump($context_variables, 'Twig context');
}
else {
foreach ($args as $variable) {
$this->dumper
->dump($variable);
}
}
return ob_get_clean();
}