Added help text to the Monitors General tab

This commit is contained in:
Kyle Johnson 2013-09-25 10:09:36 -04:00
parent 5ae657d6b0
commit 6b4e703388
1 changed files with 9 additions and 3 deletions

View File

@ -24,8 +24,14 @@ echo $this->Form->input('Name');
echo $this->Form->input('Type', array( 'type' => 'select', 'options' => $typeoptions));
echo $this->Form->input('Function', array('type' => 'select', 'options' => $functionoptions));
echo $this->Form->input('Enabled', array('type' => 'checkbox', 'div' => false, 'class' => false));
echo $this->Form->input('MaxFPS');
echo $this->Form->input('AlarmMaxFPS');
echo $this->Form->input('RefBlendPerc');
echo $this->Form->input('MaxFPS', array(
'after' => '<span class="help-block">Limit the maximum capture rate to the specified value. Do not use with IP / Network cameras, instead limit on the camera itself.</span>'
));
echo $this->Form->input('AlarmMaxFPS', array(
'after' => '<span class="help-block">Override the above Max FPS option during alarms.</span>'
));
echo $this->Form->input('RefBlendPerc', array(
'after' => '<span class="help-block">Each analysed image in ZoneMinder is a composite of previous images and is formed by applying the current image as a certain percentage of the previous reference image. This value specifies that percentage.</span>'
));
?>
</div>