12 lines
456 B
PHP
12 lines
456 B
PHP
<div id="general" class="tab-pane active">
|
|
<?php
|
|
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'));
|
|
echo $this->Form->input('MaxFPS');
|
|
echo $this->Form->input('AlarmMaxFPS');
|
|
echo $this->Form->input('RefBlendPerc');
|
|
?>
|
|
</div>
|