22 lines
344 B
Plaintext
22 lines
344 B
Plaintext
|
<div id="misc">
|
||
|
<?php
|
||
|
echo $this->Form->inputs(array(
|
||
|
'EventPrefix',
|
||
|
'SectionLength',
|
||
|
'FrameSkip',
|
||
|
'FPSReportInterval',
|
||
|
'DefaultView',
|
||
|
'DefaultRate',
|
||
|
'DefaultScale',
|
||
|
'WebColour',
|
||
|
'legend' => false
|
||
|
));
|
||
|
|
||
|
echo $this->Form->input('LinkedMonitors', array(
|
||
|
'type' => 'checkbox',
|
||
|
'options' => $linkedMonitors,
|
||
|
));
|
||
|
|
||
|
?>
|
||
|
</div>
|