You are here

public function LegacyMessenger::messagesByType in Drupal 8

Gets all messages of a certain type.

Parameters

string $type: The messages' type. Either self::TYPE_STATUS, self::TYPE_WARNING, or self::TYPE_ERROR.

Return value

string[]|\Drupal\Component\Render\MarkupInterface[] The messages of given type.

Overrides MessengerInterface::messagesByType

File

core/lib/Drupal/Core/Messenger/LegacyMessenger.php, line 154

Class

LegacyMessenger
Provides a LegacyMessenger implementation.

Namespace

Drupal\Core\Messenger

Code

public function messagesByType($type) {

  // Proxy to the Messenger service, if it exists.
  if ($messenger = $this
    ->getMessengerService()) {
    return $messenger
      ->messagesByType($type);
  }
  return static::$messages[$type];
}