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