| Line 8... |
Line 8... |
| 8 |
<fieldset>
|
8 |
<fieldset>
|
| 9 |
<legend><?php echo __('Admin Edit Notification Rule'); ?></legend>
|
9 |
<legend><?php echo __('Admin Edit Notification Rule'); ?></legend>
|
| 10 |
<?php
|
10 |
<?php
|
| 11 |
echo $this->Form->input('id');
|
11 |
echo $this->Form->input('id');
|
| 12 |
echo $this->Form->input('name');
|
12 |
echo $this->Form->input('name');
|
| 13 |
echo $this->Form->input('sql');
|
13 |
echo $this->Form->input('sql',array('type'=>'textarea'));
|
| 14 |
echo $this->Form->input('message');
|
14 |
echo $this->Form->input('message');
|
| 15 |
echo $this->Form->input('url');
|
15 |
echo $this->Form->input('url');
|
| 16 |
echo $this->Form->input('type', array('type' => 'select'));
|
16 |
echo $this->Form->input('type', array('type' => 'select'));
|
| 17 |
$options = array('active'=>'Active','paused'=>'Paused','deleted'=>'Deleted');
|
17 |
$options = array('active'=>'Active','paused'=>'Paused','deleted'=>'Deleted');
|
| 18 |
echo $this->Form->input('status',array('type'=>'select','options'=>$options));
|
18 |
echo $this->Form->input('status',array('type'=>'select','options'=>$options));
|