| 16549 |
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">
|
| 16755 |
anikendra |
7 |
<a href="<?php echo $base_url;?>admin/appmasters/edit/<?php echo $this->request->data['AppOffer']['appmaster_id'];?>">Edit Master</a>
|
| 16549 |
anikendra |
8 |
<?php echo $this->Form->create('AppOffer'); ?>
|
|
|
9 |
<fieldset>
|
|
|
10 |
<legend><?php echo __('Admin Edit App Offer'); ?></legend>
|
|
|
11 |
<?php
|
|
|
12 |
echo $this->Form->input('id');
|
|
|
13 |
echo $this->Form->input('affiliate_id',array('options'=>$affiliate_ids));
|
| 16614 |
anikendra |
14 |
echo $this->Form->input('appmaster_id',array('type'=>'text'));
|
| 16549 |
anikendra |
15 |
// echo $this->Form->input('startDate');
|
|
|
16 |
// echo $this->Form->input('endDate');
|
|
|
17 |
echo $this->Form->input('affiliate_offer_id',array('type'=>'text'));
|
|
|
18 |
echo $this->Form->input('app_name');
|
|
|
19 |
echo $this->Form->input('downloads');
|
|
|
20 |
echo $this->Form->input('ratings');
|
| 16704 |
anikendra |
21 |
// echo $this->Form->input('retailer_tagline');
|
|
|
22 |
// echo $this->Form->input('customer_tagline');
|
| 16549 |
anikendra |
23 |
echo $this->Form->input('offer_price');
|
|
|
24 |
echo $this->Form->input('user_payout');
|
|
|
25 |
echo $this->Form->input('override_payout');
|
|
|
26 |
echo $this->Form->input('overriden_payout');
|
|
|
27 |
echo $this->Form->input('package_name');
|
|
|
28 |
echo $this->Form->input('image_url');
|
|
|
29 |
echo $this->Form->input('description');
|
|
|
30 |
echo $this->Form->input('shortDescription');
|
| 16704 |
anikendra |
31 |
// echo $this->Form->input('FinalShortDescription',array('type'=>'textarea'));
|
| 16549 |
anikendra |
32 |
echo $this->Form->input('longDescription');
|
| 16704 |
anikendra |
33 |
// echo $this->Form->input('FinalLongDescription',array('type'=>'textarea'));
|
| 16549 |
anikendra |
34 |
echo $this->Form->input('link');
|
|
|
35 |
echo $this->Form->input('offer_active');
|
|
|
36 |
echo $this->Form->input('offerCategory');
|
| 17025 |
anikendra |
37 |
// echo $this->Form->input('priority');
|
| 16549 |
anikendra |
38 |
echo $this->Form->input('show');
|
|
|
39 |
echo $this->Form->input('promoImage');
|
| 16755 |
anikendra |
40 |
echo $this->Form->input('location');
|
| 16724 |
anikendra |
41 |
echo $this->Form->input('offerCondition',array('label'=>'Offer Text'));
|
| 16549 |
anikendra |
42 |
?>
|
|
|
43 |
</fieldset>
|
|
|
44 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
45 |
</div>
|
|
|
46 |
</div>
|
|
|
47 |
</div>
|