Same as set() but without change tracking
- If
$this->trackChanges()
is false, then this is no different than set(), since changes aren't being tracked. - If
$this->trackChanges()
is true, then the value will be set quietly (i.e. not recorded in the changes list).
Usage
$wireData->setQuietly(string $key, mixed $value);
Arguments
Name | Type(s) | Description |
---|---|---|
key | string | Name of property you want to set |
value | mixed | Value of property |
Return value
$this
Object instance it was called from (method supports fluent interface).
See Also
WireData methods and properties
API reference based on ProcessWire core version 3.0.236