Skip to content

Instantly share code, notes, and snippets.

@radheymkumar
Created May 28, 2019 06:58
Show Gist options
  • Save radheymkumar/a96f66d84c73a237d120c2bfbbc64dee to your computer and use it in GitHub Desktop.
Save radheymkumar/a96f66d84c73a237d120c2bfbbc64dee to your computer and use it in GitHub Desktop.
addMessage Drupal 8
<?php
// The drupal_set_message() function is being deprecated!
// @see https://api.drupal.org/api/drupal/core%21includes%21bootstrap.inc/function/drupal_set_message/8.5.x
// > Deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0.
// > Use \Drupal\Core\Messenger\MessengerInterface::addMessage() instead.
// In some custom code.
\Drupal::messenger()->addMessage('Say something else');
// When trying to print out a simple var.
\Drupal::messenger()->addMessage(print_r($stuff, TRUE));
// In a Drupal 8 Form's submitForm() handler:
$this->messenger()->addMessage($this->t('Hello world.'));
************************************************************
Here are all the set message alternative for message types.
<?php
// Add message (defaults to "status" message type).
$this->messenger()->addMessage('Hello world');
// Add specific type of message.
$this->messenger()->addMessage('Hello world', 'custom');
$this->messenger()->addError('Hello world');
$this->messenger()->addStatus('Hello world');
$this->messenger()->addWarning('Hello world');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment