Added help text to the Monitors Buffers tab
This commit is contained in:
parent
47336fee15
commit
5ae657d6b0
|
@ -1,12 +1,12 @@
|
||||||
<div class="tab-pane" id="buffers">
|
<div class="tab-pane" id="buffers">
|
||||||
<?php
|
<?php
|
||||||
echo $this->Form->inputs(array(
|
echo $this->Form->inputs(array(
|
||||||
'ImageBufferCount',
|
'ImageBufferCount' => array('after' => '<span class="help-block">This option determines how many frames are held in the ring buffer at any one time</span>'),
|
||||||
'WarmupCount',
|
'WarmupCount' => array('after' => '<span class="help-block">How many frames the analysis daemon should process but not examine when it starts. This allows it to generate an accurate reference image from a series of images before looking too carefully for any changes</span>'),
|
||||||
'PreEventCount',
|
'PreEventCount' => array('after' => '<span class="help-block">How many frames from before the event to include in the event.</span>'),
|
||||||
'PostEventCount',
|
'PostEventCount' => array('after' => '<span class="help-block">How many frames from after the event to include in the event.</span>'),
|
||||||
'StreamReplayBuffer',
|
'StreamReplayBuffer' => array('after' => '<span class="help-block"></span>'),
|
||||||
'AlarmFrameCount',
|
'AlarmFrameCount' => array('after' => '<span class="help-block">How many consecutive alarm frames must occur before an alarm event is generated</span>'),
|
||||||
'legend' => false
|
'legend' => false
|
||||||
));
|
));
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue