Documentation
ApplyChanges
Require: IP-Symcon >= 4.0
void ApplyChanges ()
Returns
No Return
Description
Is executed when "Apply" is pressed on the configuration page and immediately after the instance has been created.
The ApplyChanges function is called by IP-Symcon. It must therefore be overwritten by the base class in order to add individual extensions.
Example
public function ApplyChanges() {
// Don't delete this line
parent::ApplyChanges();
// If there is no parent instance, create a new, separate VirtualIO instance
$this->RequireParent("{6179ED6A-FC31-413C-BB8E-1204150CF376}");
}