function devel_message
Same name in other branches
- 4.x devel.module \devel_message()
Sets a message with a string representation of a variable.
Wrapper for DevelDumperManager::message().
Parameters
mixed $input: The variable to dump.
string|null $name: (optional) The label to output before variable, defaults to NULL.
string $type: (optional) The message's type. Defaults to 'status'.
string|null $plugin_id: (optional) The plugin ID, defaults to NULL.
See also
\Drupal\devel\DevelDumperManager::message()
2 string references to 'devel_message'
- 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 341
Code
function devel_message(mixed $input, ?string $name = NULL, string $type = MessengerInterface::TYPE_STATUS, ?string $plugin_id = NULL) : void {
Drupal::service('devel.dumper')->message(input: $input, name: $name, type: $type, plugin_id: $plugin_id);
}