| Line 14... |
Line 14... |
| 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('url',array('readonly'=>true));
|
16 |
echo $this->Form->input('url',array('readonly'=>true));
|
| 17 |
echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
|
17 |
echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
|
| 18 |
echo $this->Form->input('expiresat',array('type'=>'datetime'));
|
18 |
echo $this->Form->input('expiresat',array('type'=>'datetime'));
|
| 19 |
echo $this->Form->input('sendsms');
|
19 |
echo $this->Form->input('sendsms',array('type'=>'checkbox'));
|
| 20 |
echo $this->Form->input('messagetext');
|
20 |
echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));
|
| 21 |
|
21 |
|
| 22 |
?>
|
22 |
?>
|
| 23 |
</fieldset>
|
23 |
</fieldset>
|
| 24 |
<?php echo $this->Form->end(__('Submit')); ?>
|
24 |
<?php echo $this->Form->end(__('Submit')); ?>
|
| 25 |
</div>
|
25 |
</div>
|