Wire::warning()
Record a warning error message in the system-wide notices.
This method automatically identifies the warning as coming from this class.
Example
$this->warning("This is the notice text");
$this->warning("This notice is also logged", true);
$this->warning("This notice is only shown in debug mode", Notice::debug);
$this->warning("This notice allows <em>markup</em>", Notice::allowMarkup);
$this->warning("Notice using multiple flags", Notice::debug | Notice::logOnly);
Usage
// basic usage
$wire->warning($text);
// usage with all arguments
$wire->warning($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.251