You are here

interface FeedsExMessengerInterface in Feeds extensible parsers 7.2

Same name and namespace in other branches
  1. 7 src/FeedsExBase.inc \FeedsExMessengerInterface

Displays messages to the user.

Hierarchy

Expanded class hierarchy of FeedsExMessengerInterface

All classes that implement FeedsExMessengerInterface

File

src/FeedsExBase.inc, line 831
Contains FeedsExBase.

View source
interface FeedsExMessengerInterface {

  /**
   * Sets a message to display to the user.
   *
   * @param string $message
   *   The message.
   * @param string $type
   *   (optional) The type of message. Defaults to 'status'.
   * @param bool $repeat
   *   (optional) Whether to allow the message to repeat. Defaults to true.
   *
   * @see drupal_set_message()
   */
  public function setMessage($message = NULL, $type = 'status', $repeat = TRUE);

}

Members

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