1 drupal.inc | drupal_get_messages($type = NULL, $clear_queue = TRUE) |
Returns all messages that have been set with backdrop_set_message().
Deprecated
since 1.0.0
See also
Related topics
File
- core/
includes/ drupal.inc, line 236 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_get_messages($type = NULL, $clear_queue = TRUE) {
return backdrop_get_messages($type, $clear_queue);
}