You are here

public function FeedsExMessengerInterface::setMessage in Feeds extensible parsers 7

Same name and namespace in other branches
  1. 7.2 src/FeedsExBase.inc \FeedsExMessengerInterface::setMessage()

Sets a message to display to the user.

Parameters

string $message: The message.

string $type: (optional) The type of message. Defaults to 'status'.

bool $repeat: (optional) Whether to allow the message to repeat. Defaults to true.

See also

drupal_set_message()

2 methods override FeedsExMessengerInterface::setMessage()
FeedsExMessenger::setMessage in src/FeedsExBase.inc
Sets a message to display to the user.
FeedsExTestMessenger::setMessage in src/FeedsExBase.inc
Sets a message to display to the user.

File

src/FeedsExBase.inc, line 802
Contains FeedsExBase.

Class

FeedsExMessengerInterface
Displays messages to the user.

Code

public function setMessage($message = NULL, $type = 'status', $repeat = TRUE);