| 14965 |
anikendra |
1 |
<div class="container">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-3">
|
|
|
4 |
<?php echo $this->Element('adminactions');?>
|
|
|
5 |
</div>
|
|
|
6 |
<div class="col-lg-9">
|
|
|
7 |
<?php echo $this->Form->create('NotificationCampaign'); ?>
|
|
|
8 |
<fieldset>
|
|
|
9 |
<legend><?php echo __('Admin Edit Notification Campaign'); ?></legend>
|
|
|
10 |
<?php
|
|
|
11 |
echo $this->Form->input('id');
|
|
|
12 |
echo $this->Form->input('name',array('readonly'=>true));
|
|
|
13 |
echo $this->Form->input('title',array('readonly'=>true));
|
|
|
14 |
echo $this->Form->input('message',array('readonly'=>true));
|
|
|
15 |
// echo $this->Form->input('type');
|
| 19078 |
naman |
16 |
echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));
|
| 14965 |
anikendra |
17 |
echo $this->Form->input('url',array('readonly'=>true));
|
|
|
18 |
echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
|
|
|
19 |
echo $this->Form->input('expiresat',array('type'=>'datetime'));
|
| 17438 |
manish.sha |
20 |
echo $this->Form->input('sendsms',array('type'=>'checkbox'));
|
|
|
21 |
echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));
|
| 19078 |
naman |
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"));
|
| 14965 |
anikendra |
25 |
?>
|
|
|
26 |
</fieldset>
|
|
|
27 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
28 |
</div>
|
|
|
29 |
</div>
|
|
|
30 |
</div>
|