function drupal_get_messages in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/bootstrap.inc \drupal_get_messages()
Returns all messages that have been set with drupal_set_message().
Parameters
string $type: (optional) Limit the messages returned by type. Defaults to NULL, meaning all types. These values are supported:
- NULL
- 'status'
- 'warning'
- 'error'
bool $clear_queue: (optional) If this is TRUE, the queue will be cleared of messages of the type specified in the $type parameter. Otherwise the queue will be left intact. Defaults to TRUE.
Return value
array An associative, nested array of messages grouped by message type, with the top-level keys as the message type. The messages returned are limited to the type specified in the $type parameter, if any. If there are no messages of the specified type, an empty array is returned. See drupal_set_message() for the array structure of individual messages.
See also
6 calls to drupal_get_messages()
- DrupalSetMessageTest::testDrupalSetMessage in core/
tests/ Drupal/ KernelTests/ Core/ Common/ DrupalSetMessageTest.php - The basic functionality of drupal_set_message().
- ElementsTableSelectTest::formSubmitHelper in core/
modules/ system/ src/ Tests/ Form/ ElementsTableSelectTest.php - Helper function for the option check test to submit a form while collecting errors.
- FormTest::testRequiredFields in core/
modules/ system/ src/ Tests/ Form/ FormTest.php - Check several empty values for required forms elements.
- NameMungingTest::testMunging in core/
modules/ system/ src/ Tests/ File/ NameMungingTest.php - Create a file and munge/unmunge the name.
- StatusMessages::renderMessages in core/
lib/ Drupal/ Core/ Render/ Element/ StatusMessages.php - #lazy_builder callback; replaces placeholder with messages.
File
- core/
includes/ bootstrap.inc, line 487 - Functions that need to be loaded on every Drupal request.
Code
function drupal_get_messages($type = NULL, $clear_queue = TRUE) {
if ($messages = drupal_set_message()) {
if ($type) {
if ($clear_queue) {
unset($_SESSION['messages'][$type]);
}
if (isset($messages[$type])) {
return array(
$type => $messages[$type],
);
}
}
else {
if ($clear_queue) {
unset($_SESSION['messages']);
}
return $messages;
}
}
return array();
}