| 15403 |
manish.sha |
1 |
<div class="container">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-3">
|
|
|
4 |
<?php echo $this->Element('storeactions');?>
|
|
|
5 |
</div>
|
|
|
6 |
<div class="col-lg-9">
|
|
|
7 |
<?php echo $this->Form->create('Store'); ?>
|
|
|
8 |
<fieldset>
|
|
|
9 |
<legend><?php echo __('Edit Store'); ?></legend>
|
|
|
10 |
<?php
|
|
|
11 |
echo $this->Form->input('id');
|
|
|
12 |
echo $this->Form->input('name');
|
|
|
13 |
echo $this->Form->input('domain');
|
|
|
14 |
echo $this->Form->input('status');
|
|
|
15 |
echo $this->Form->input('affiliate_id',array('type'=>'text'));
|
|
|
16 |
echo $this->Form->input('affid_param');
|
|
|
17 |
echo $this->Form->input('sub_tag_param');
|
|
|
18 |
echo $this->Form->input('cashback_status',array('type'=>'select','options'=>$cashback_statuses));
|
|
|
19 |
?>
|
|
|
20 |
</fieldset>
|
|
|
21 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
22 |
</div>
|
|
|
23 |
</div>
|
|
|
24 |
</div>
|
|
|
25 |
</div>
|