Record an informational or “success” message in the system-wide notices.
This method automatically identifies the message as coming from this class.
Example
$this->message("This is the notice text");
$this->message("This notice is also logged", true);
$this->message("This notice is only shown in debug mode", Notice::debug);
$this->message("This notice allows <em>markup</em>", Notice::allowMarkup);
$this->message("Notice using multiple flags", Notice::debug | Notice::logOnly);
Usage
// basic usage
$wire->message($text);
// usage with all arguments
$wire->message($text, $flags = 0);
Arguments
Name | Type(s) | Description |
---|---|---|
text | string, array, Wire | Text to include in the notice |
flags (optional) | int, bool, string | Optional flags to alter default behavior:
|
Return value
$this
Object instance it was called from (method supports fluent interface).
See Also
API reference based on ProcessWire core version 3.0.172