diff --git a/web/includes/Monitor.php b/web/includes/Monitor.php index b80937005..a816c9aa7 100644 --- a/web/includes/Monitor.php +++ b/web/includes/Monitor.php @@ -612,5 +612,11 @@ class Monitor extends ZM_Object { $cmd = getZmuCommand(' -c -m '.$this->{'Id'}); $output = shell_exec($cmd); } + function DisableAlarms() { + $cmd = getZmuCommand(' -n -m '.$this->{'Id'}); + $output = shell_exec($cmd); + Debug("Running $cmd output: $output"); + } + } // end class Monitor ?>