function devel_dump
Same name in other branches
- 5.x devel.module \devel_dump()
Dumps information about a variable.
Wrapper for DevelDumperManager::dump().
Parameters
mixed $input: The variable to dump.
string $name: (optional) The label to output before variable, defaults to NULL.
string $plugin_id: (optional) The plugin ID, defaults to NULL.
See also
\Drupal\devel\DevelDumperManager::dump()
2 string references to 'devel_dump'
- Debug::getFunctions in src/
Twig/ Extension/ Debug.php - DevelTwigExtensionTest::testDumpFunctionsRegistered in tests/
src/ Kernel/ DevelTwigExtensionTest.php - Tests that the Twig dump functions are registered properly.
File
-
./
devel.module, line 304
Code
function devel_dump($input, $name = NULL, $plugin_id = NULL) {
\Drupal::service('devel.dumper')->dump($input, $name, $plugin_id);
}