add zmeventnotification to Server object

This commit is contained in:
Isaac Connor 2019-02-27 09:28:36 -05:00
parent 849442502c
commit c0ae7820bb
1 changed files with 12 additions and 11 deletions

View File

@ -7,17 +7,18 @@ $server_cache = array();
class Server {
private $defaults = array(
'Id' => null,
'Name' => '',
'Protocol' => '',
'Hostname' => '',
'Port' => null,
'PathToIndex' => null,
'PathToZMS' => ZM_PATH_ZMS,
'PathToApi' => '/zm/api',
'zmaudit' => 1,
'zmstats' => 1,
'zmtrigger' => 0,
'Id' => null,
'Name' => '',
'Protocol' => '',
'Hostname' => '',
'Port' => null,
'PathToIndex' => null,
'PathToZMS' => ZM_PATH_ZMS,
'PathToApi' => '/zm/api',
'zmaudit' => 1,
'zmstats' => 1,
'zmtrigger' => 0,
'zmeventnotification' => 0,
);
public function __construct($IdOrRow = NULL) {