You are here

interface MessengerInterface in Views XML Backend 8

Allows a plugable drupal_set_message() implementation.

Hierarchy

Expanded class hierarchy of MessengerInterface

All classes that implement MessengerInterface

1 file declares its use of MessengerInterface
Xml.php in src/Plugin/views/query/Xml.php
Contains \Drupal\views_xml_backend\Plugin\views\query\Xml.

File

src/MessengerInterface.php, line 13
Contains \Drupal\views_xml_backend\MessengerInterface.

Namespace

Drupal\views_xml_backend
View source
interface MessengerInterface {

  /**
   * Sets a message to display to the user.
   *
   * @see drupal_set_message()
   */
  public function setMessage($message = NULL, $type = 'status', $repeat = FALSE);

}

Members

Namesort descending Modifiers Type Description Overrides
MessengerInterface::setMessage public function Sets a message to display to the user. 2