diff --git a/web/includes/Monitor.php b/web/includes/Monitor.php
index c8fa6ebb1..09d4657a8 100644
--- a/web/includes/Monitor.php
+++ b/web/includes/Monitor.php
@@ -719,5 +719,27 @@ class Monitor extends ZM_Object {
}
return $this->{'Manufacturer'};
}
+ function getMonitorStateHTML() {
+ $html = '
+
+
+ '.translate('State').':
+ fps
+ fps
+';
+ if ( $this->Function() == 'Modect' or $this->Function() == 'Mocord' ) {
+ $html .= ' fps
+ ';
+ }
+ $html .= '
+ '.translate('Rate').': x
+ '.translate('Delay').': s
+ '.translate('Buffer').': %
+ '. translate('Zoom').': x
+
+
+';
+ return $html;
+ }
} // end class Monitor
?>