| Line 11... |
Line 11... |
| 11 |
echo $this->Form->input('id');
|
11 |
echo $this->Form->input('id');
|
| 12 |
echo $this->Form->input('name',array('readonly'=>true));
|
12 |
echo $this->Form->input('name',array('readonly'=>true));
|
| 13 |
echo $this->Form->input('title',array('readonly'=>true));
|
13 |
echo $this->Form->input('title',array('readonly'=>true));
|
| 14 |
echo $this->Form->input('message',array('readonly'=>true));
|
14 |
echo $this->Form->input('message',array('readonly'=>true));
|
| 15 |
// echo $this->Form->input('type');
|
15 |
// echo $this->Form->input('type');
|
| - |
|
16 |
echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));
|
| 16 |
echo $this->Form->input('url',array('readonly'=>true));
|
17 |
echo $this->Form->input('url',array('readonly'=>true));
|
| 17 |
echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
|
18 |
echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
|
| 18 |
echo $this->Form->input('expiresat',array('type'=>'datetime'));
|
19 |
echo $this->Form->input('expiresat',array('type'=>'datetime'));
|
| 19 |
echo $this->Form->input('sendsms',array('type'=>'checkbox'));
|
20 |
echo $this->Form->input('sendsms',array('type'=>'checkbox'));
|
| 20 |
echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));
|
21 |
echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));
|
| 21 |
|
- |
|
| - |
|
22 |
echo $this->Form->input('smsprocessed',array('type'=>"hidden"));
|
| - |
|
23 |
echo $this->Form->input('notification_processed',array('type'=>"hidden"));
|
| - |
|
24 |
echo $this->Form->input('notification_type',array('type'=>"hidden"));
|
| 22 |
?>
|
25 |
?>
|
| 23 |
</fieldset>
|
26 |
</fieldset>
|
| 24 |
<?php echo $this->Form->end(__('Submit')); ?>
|
27 |
<?php echo $this->Form->end(__('Submit')); ?>
|
| 25 |
</div>
|
28 |
</div>
|
| 26 |
</div>
|
29 |
</div>
|