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