Skip to content
Snippets Groups Projects
Commit 78ca5677 authored by Jess's avatar Jess
Browse files

Issue #2853509 by alexpott: Don't render status messages if there are no messages

parent f0f5a2ef
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -73,17 +73,22 @@ public static function generatePlaceholder(array $element) { ...@@ -73,17 +73,22 @@ public static function generatePlaceholder(array $element) {
* @see drupal_get_messages() * @see drupal_get_messages()
*/ */
public static function renderMessages($type) { public static function renderMessages($type) {
// Render the messages. $render = [];
return [ $messages = drupal_get_messages($type);
'#theme' => 'status_messages', if ($messages) {
// @todo Improve when https://www.drupal.org/node/2278383 lands. // Render the messages.
'#message_list' => drupal_get_messages($type), $render = [
'#status_headings' => [ '#theme' => 'status_messages',
'status' => t('Status message'), // @todo Improve when https://www.drupal.org/node/2278383 lands.
'error' => t('Error message'), '#message_list' => $messages,
'warning' => t('Warning message'), '#status_headings' => [
], 'status' => t('Status message'),
]; 'error' => t('Error message'),
'warning' => t('Warning message'),
],
];
}
return $render;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment