| 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');
|
|
|
16 |
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('expiresat',array('type'=>'datetime'));
|
| 17432 |
manish.sha |
19 |
echo $this->Form->input('sendsms');
|
|
|
20 |
echo $this->Form->input('messagetext');
|
|
|
21 |
|
| 14965 |
anikendra |
22 |
?>
|
|
|
23 |
</fieldset>
|
|
|
24 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
25 |
</div>
|
|
|
26 |
</div>
|
|
|
27 |
</div>
|