| Line 67... |
Line 67... |
| 67 |
<?php echo $this->Form->input('message');?>
|
67 |
<?php echo $this->Form->input('message');?>
|
| 68 |
<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
|
68 |
<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
|
| 69 |
<?php echo $this->Form->input('url');?>
|
69 |
<?php echo $this->Form->input('url');?>
|
| 70 |
<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
|
70 |
<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
|
| 71 |
<?php echo $this->Form->input('sendsms',array('type'=>'checkbox'));?>
|
71 |
<?php echo $this->Form->input('sendsms',array('type'=>'checkbox'));?>
|
| - |
|
72 |
<?php $notitype=array("GENERAL_NOTIFICATION"=>"GENERAL_NOTIFICATION","BATCH_CREDIT"=>"BATCH_CREDIT");
|
| - |
|
73 |
echo $this->Form->input('notification_type', array('options'=>$notitype, 'selected'=>'GENERAL_NOTIFICATION'));?>
|
| 72 |
<?php echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));?>
|
74 |
<?php echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));?>
|
| 73 |
<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>
|
75 |
<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>
|
| 74 |
</div>
|
76 |
</div>
|
| 75 |
<?php echo $this->Form->end();?>
|
77 |
<?php echo $this->Form->end();?>
|
| 76 |
</div>
|
78 |
</div>
|
| 77 |
|
79 |
|