zoneminder/web/includes/Server.php

31 lines
633 B
PHP
Raw Normal View History

2015-09-17 03:16:07 +08:00
<?php
require_once( 'database.php' );
class Server {
2015-09-18 03:34:26 +08:00
public function __construct( $id ) {
if ( $id ) {
$s = dbFetchOne( 'SELECT * FROM Servers WHERE Id=?', NULL, array( $id ) );
if ( $s ) {
foreach ($s as $k => $v) {
$this->{$k} = $v;
2015-09-17 03:16:07 +08:00
}
2015-09-18 03:34:26 +08:00
} else {
Error("Unable to load Server record for Id=" . $id );
2015-09-17 03:16:07 +08:00
}
2015-09-18 03:34:26 +08:00
} else {
$this->{'Name'} = '';
$this->{'Hostname'} = '';
}
}
2015-09-17 03:16:07 +08:00
public function Name() {
2015-09-18 03:34:26 +08:00
return $this->{'Name'};
}
public function Hostname() {
2015-10-03 02:22:19 +08:00
if ( isset( $this->{'Hostname'} ) and ( $this->{'Hostname'} != '' ) ) {
return $this->{'Hostname'};
}
2015-10-03 02:22:19 +08:00
return $this->{'Name'};
2015-09-17 03:16:07 +08:00
}
}
?>