Record an non-fatal error message in the system-wide notices.
- This method automatically identifies the error as coming from this class.
- You should still make fatal errors throw a
WireException
(or class derived from it).
Example
$this->error("This is the notice text");
$this->error("This notice is also logged", true);
$this->error("This notice is only shown in debug mode", Notice::debug);
$this->error("This notice allows <em>markup</em>", Notice::allowMarkup);
$this->error("Notice using multiple flags", Notice::debug | Notice::logOnly);
Usage
// basic usage
$wire->error($text);
// usage with all arguments
$wire->error($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.244