2013-09-25 09:14:56 +08:00
|
|
|
<?php echo $this->Form->create('Monitor', array(
|
|
|
|
'inputDefaults' => array(
|
|
|
|
'legend' => false,
|
|
|
|
'fieldset' => false,
|
2013-09-25 09:23:35 +08:00
|
|
|
'label' => array('class' => array('control-label')),
|
2013-09-25 09:32:38 +08:00
|
|
|
'div' => array('class' => array('form-group')),
|
2013-09-25 09:14:56 +08:00
|
|
|
'class' => 'form-control'
|
2013-09-25 09:23:35 +08:00
|
|
|
)
|
2013-09-25 09:14:56 +08:00
|
|
|
)); ?>
|
|
|
|
<?php echo $this->Form->input('Id', array('type' => 'hidden')); ?>
|